mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 03:40:27 +08:00
17 lines
234 B
Go
17 lines
234 B
Go
package actionutils
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/rpc"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type ActionInterface interface {
|
|
RPC() *rpc.RPCClient
|
|
|
|
AdminContext() context.Context
|
|
|
|
ViewData() maps.Map
|
|
}
|