service.go 76 B

123456
  1. package service
  2. type Service interface {
  3. String() string
  4. Close() error
  5. }