This commit is contained in:
孟帅
2023-05-10 23:54:50 +08:00
parent bbe655a4d8
commit 49a96750bf
314 changed files with 15138 additions and 6244 deletions

View File

@@ -7,10 +7,16 @@ package service
import (
"context"
"hotgo/internal/model/input/msgin"
)
type (
ITCPServer interface {
OnAuthSummary(ctx context.Context, args ...interface{})
CronDelete(ctx context.Context, in *msgin.CronDelete) (err error)
CronEdit(ctx context.Context, in *msgin.CronEdit) (err error)
CronStatus(ctx context.Context, in *msgin.CronStatus) (err error)
CronOnlineExec(ctx context.Context, in *msgin.CronOnlineExec) (err error)
Start(ctx context.Context)
Stop(ctx context.Context)
}