mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-07-16 16:20:10 +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)
|
|
}
|