influxdb/services/graphite/service.go

12 lines
260 B
Go
Raw Normal View History

package graphite
import "net"
type Service struct{}
func NewService(c Config) *Service { return &Service{} }
func (s *Service) Open() error { return nil }
func (s *Service) Close() error { return nil }
func (s *Service) Addr() net.Addr { return nil }