feat: add generic service interface

This commit is contained in:
Derrick Hammer 2024-01-19 12:48:37 -05:00
parent 5b6084986f
commit 2500b3f047
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 6 additions and 0 deletions

6
interfaces/service.go Normal file
View File

@ -0,0 +1,6 @@
package interfaces
type Service interface {
Init() error
Start() error
}