influxdb/cluster/service.go

15 lines
262 B
Go
Raw Normal View History

2015-05-28 21:47:47 +00:00
package cluster
2015-05-29 19:50:05 +00:00
import "net"
2015-05-28 21:47:47 +00:00
type Service struct {
}
2015-05-29 19:50:05 +00:00
func NewService(c Config) *Service {
2015-05-28 21:47:47 +00:00
return &Service{}
}
2015-05-29 19:50:05 +00:00
func (s *Service) Open() error { return nil }
func (s *Service) Close() error { return nil }
func (s *Service) Addr() net.Addr { return nil }