add server

This commit is contained in:
2024-05-13 04:28:51 +07:00
parent 00f28e3f7b
commit 2c7aedd5c2
5 changed files with 66 additions and 0 deletions
@@ -0,0 +1,8 @@
package server_web
import "context"
type IServer interface {
Run(ctx context.Context) error
Stop(ctx context.Context) error
}