2017-11-29 00:30:07 +00:00
|
|
|
package consul
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &ACL{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Catalog{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return NewCoordinate(s) })
|
2019-04-07 06:38:08 +00:00
|
|
|
registerEndpoint(func(s *Server) interface{} { return &ConfigEntry{s} })
|
2019-01-22 17:19:36 +00:00
|
|
|
registerEndpoint(func(s *Server) interface{} { return &ConnectCA{srv: s} })
|
2019-08-02 20:34:54 +00:00
|
|
|
registerEndpoint(func(s *Server) interface{} { return &DiscoveryChain{s} })
|
2017-11-29 00:30:07 +00:00
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Health{s} })
|
2018-02-28 18:04:27 +00:00
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Intention{s} })
|
2017-11-29 00:30:07 +00:00
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Internal{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &KVS{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Operator{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &PreparedQuery{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Session{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Status{s} })
|
|
|
|
registerEndpoint(func(s *Server) interface{} { return &Txn{s} })
|
2017-12-20 21:43:38 +00:00
|
|
|
}
|