Documentation
¶
Index ¶
- func CtrlRelease(cmd *cobra.Command, args []string)
- func WrapperRun(fn func()) func(*cobra.Command, []string)
- type AdminCtrl
- type Controller
- func (c *Controller) GetStatus()
- func (c *Controller) Log()
- func (c *Controller) Login()
- func (c *Controller) Logout()
- func (c *Controller) MeetingAdd()
- func (c *Controller) MeetingCreate()
- func (c *Controller) MeetingDelete()
- func (c *Controller) MeetingList()
- func (c *Controller) MeetingQuit()
- func (c *Controller) MeetingRemove()
- func (c *Controller) MeetingSet()
- func (c *Controller) Register()
- func (c *Controller) UserDelete()
- func (c *Controller) UserList()
- func (c *Controller) UserSet()
- type Ctx
- func (c *Ctx) Get(key string) (interface{}, bool)
- func (c *Ctx) GetBool(key string) (bool, bool)
- func (c *Ctx) GetSecret(key string) (interface{}, bool)
- func (c *Ctx) GetSecretString(key string) (string, bool)
- func (c *Ctx) GetString(key string) (string, bool)
- func (c *Ctx) GetStringSlice(key string) ([]string, bool)
- func (c *Ctx) GetTime(key string) (time.Time, bool)
- type MeetingCtrl
- type User
- type UserCtrl
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CtrlRelease ¶
func WrapperRun ¶
Types ¶
type AdminCtrl ¶
type AdminCtrl interface { GetStatus() Login() Logout() Register() Log() }
func GetAdminCtrl ¶
func GetAdminCtrl() AdminCtrl
type Controller ¶
func (*Controller) GetStatus ¶
func (c *Controller) GetStatus()
func (*Controller) Log ¶
func (c *Controller) Log()
func (*Controller) Login ¶
func (c *Controller) Login()
func (*Controller) Logout ¶
func (c *Controller) Logout()
func (*Controller) MeetingAdd ¶
func (c *Controller) MeetingAdd()
func (*Controller) MeetingCreate ¶
func (c *Controller) MeetingCreate()
func (*Controller) MeetingDelete ¶
func (c *Controller) MeetingDelete()
func (*Controller) MeetingList ¶
func (c *Controller) MeetingList()
func (*Controller) MeetingQuit ¶
func (c *Controller) MeetingQuit()
func (*Controller) MeetingRemove ¶
func (c *Controller) MeetingRemove()
func (*Controller) MeetingSet ¶
func (c *Controller) MeetingSet()
func (*Controller) Register ¶
func (c *Controller) Register()
func (*Controller) UserDelete ¶
func (c *Controller) UserDelete()
func (*Controller) UserList ¶
func (c *Controller) UserList()
func (*Controller) UserSet ¶
func (c *Controller) UserSet()
type MeetingCtrl ¶
type MeetingCtrl interface { MeetingCreate() MeetingSet() MeetingQuit() MeetingDelete() MeetingAdd() MeetingList() MeetingRemove() }
func GetMeetingCtrl ¶
func GetMeetingCtrl() MeetingCtrl
type UserCtrl ¶
type UserCtrl interface { UserDelete() UserList() UserSet() }
func GetUserCtrl ¶
func GetUserCtrl() UserCtrl
Click to show internal directories.
Click to hide internal directories.