mirror of
https://github.com/ayflying/p2p.git
synced 2026-03-04 17:29:22 +00:00
16 lines
427 B
Go
16 lines
427 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package system
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ayflying/p2p/api/system/v1"
|
|
)
|
|
|
|
type ISystemV1 interface {
|
|
Update(ctx context.Context, req *v1.UpdateReq) (res *v1.UpdateRes, err error)
|
|
}
|