github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/externals/proof_checkers.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  package externals
     5  
     6  import libkb "github.com/keybase/client/go/libkb"
     7  
     8  func getStaticProofServices() []libkb.ServiceType {
     9  	services := []libkb.ServiceType{
    10  		&DNSServiceType{},
    11  		&FacebookServiceType{},
    12  		&GithubServiceType{},
    13  		&HackerNewsServiceType{},
    14  		&RedditServiceType{},
    15  		&TwitterServiceType{},
    16  		&WebServiceType{},
    17  		&WebServiceType{scheme: "http"},
    18  		&WebServiceType{scheme: "https"},
    19  	}
    20  	return append(services, getBuildSpecificStaticProofServices()...)
    21  }