mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
10 lines
189 B
Go
10 lines
189 B
Go
package admin
|
|
|
|
import "context"
|
|
|
|
type IApintoAdmin interface {
|
|
Ping(ctx context.Context) error
|
|
Info(ctx context.Context) (*Info, error)
|
|
Version(ctx context.Context) (*Version, error)
|
|
}
|