service.go 74 B

123456
  1. package adapter
  2. type Service interface {
  3. Start() error
  4. Close() error
  5. }