Skip to content

Commit b000215

Browse files
committed
Updated
1 parent 60a7cfc commit b000215

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

cmd.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@ type Cmd interface {
3434

3535
type DebugLevel uint
3636

37-
type CmdOffsetLimit struct {
38-
Offset uint64 `name:"offset" help:"List item offset"`
39-
Limit *uint64 `name:"limit" help:"List item limit"`
40-
}
41-
4237
///////////////////////////////////////////////////////////////////////////////
4338
// GLOBALS
4439

pkg/cert/cmd/name.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type NameCommands struct {
2222
}
2323

2424
type NameListCommand struct {
25-
server.CmdOffsetLimit
25+
schema.NameListRequest
2626
}
2727

2828
type NameMeta struct {

pkg/pgmanager/cmd/database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type DatabaseCommands struct {
2222
}
2323

2424
type DatabaseListCommand struct {
25-
server.CmdOffsetLimit
25+
schema.DatabaseListRequest
2626
}
2727

2828
type DatabaseGetCommand struct {

pkg/pgmanager/cmd/role.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type RoleCommands struct {
2222
}
2323

2424
type RoleListCommand struct {
25-
server.CmdOffsetLimit
25+
schema.RoleListRequest
2626
}
2727

2828
type RoleCreateCommand struct {

0 commit comments

Comments
 (0)