Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface {
// 新增
Add(ctx context.Context, groupID string, active bool) error
// 取得
Get(ctx context.Context, groupID string) (Group, error)
// 刪除
Delete(ctx context.Context, groupID string) error
// 啟用Group
Active(ctx context.Context, groupID string) error
// 停用Group
Inactive(ctx context.Context, groupID string) error
}
Click to show internal directories.
Click to hide internal directories.