You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package app
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
type Service interface {
|
|
// Init 初始化服务
|
|
Init(ctx *Context) error
|
|
// Start 启动服务
|
|
Start() error
|
|
// Stop 停止服务
|
|
Stop() error
|
|
}
|
|
|
|
type Routable interface {
|
|
InitRoutes(r *echo.Group)
|
|
}
|
|
|