8 lines
98 B
Go
8 lines
98 B
Go
|
package services
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type IService interface {
|
||
|
Run(ctx context.Context) (error)
|
||
|
}
|