github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/externals/proof_checkers_devel.go (about)

     1  // Copyright 2015 Keybase, Inc. All rights reserved. Use of
     2  // this source code is governed by the included BSD license.
     3  
     4  //go:build !production && !staging
     5  // +build !production,!staging
     6  
     7  package externals
     8  
     9  import libkb "github.com/keybase/client/go/libkb"
    10  
    11  const useDevelProofCheckers = true
    12  
    13  func getBuildSpecificStaticProofServices() []libkb.ServiceType {
    14  	return []libkb.ServiceType{
    15  		&RooterServiceType{},
    16  	}
    17  }