portal/interfaces/service.go

7 lines
76 B
Go
Raw Normal View History

2024-01-19 17:48:37 +00:00
package interfaces
type Service interface {
Init() error
Start() error
}