9 lines
130 B
Go
9 lines
130 B
Go
|
package server_web
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type IServer interface {
|
||
|
Run(ctx context.Context) error
|
||
|
Stop(ctx context.Context) error
|
||
|
}
|