Documentation ¶
Overview ¶
命令行程序支持组件 此组件需要使用 xconsole.Listen() 来运行命令监听,即:
if len(os.Args) > 1 { xconsole.Listen() return }
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Bar ¶ added in v0.2.69
进度条对象结构体
type Config ¶
type Config struct { Version string // 外部版本标识 Rout map[string]Command // 注入时直接携带路由进行注入 WriteFileFunc func(name, body string) // 写入文件的函数,外部注册时可直接注册为:xfile.WriteString FmtFunc func(file ...string) // 格式化文件的函数,若未注入则需要手动进行执行此命令 DNS string // 默认DNS连接 sync.Mutex // 内部路由锁 // contains filtered or unexported fields }
配置项
type EmailConfig ¶ added in v0.1.29
type EmailConfig struct { MailHost string // 发件邮箱域名 MailPort int // 发件邮箱端口 MailUser string // 发件人 MailName string // 发件人昵称 MailPass string // 发件人密码 MailAddress string // 收件人邮箱,多收件人使用 `,` 进行拼接 MailCcAddress string // 抄送,多抄送人使用 `,` 进行拼接 MailBccAddress string // 暗送,多暗送人使用 `,` 进行拼接 Subject string // 主题 Body string // HTML内容 Files []string // 附件列表 }
发送邮件的配置信息
type Field ¶ added in v0.1.23
type Field struct { Field string `gorm:"column:Field"` Type string `gorm:"column:Type"` Null string `gorm:"column:Null"` Key string `gorm:"column:Key"` Default string `gorm:"column:Default"` Extra string `gorm:"column:Extra"` Privileges string `gorm:"column:Privileges"` Comment string `gorm:"column:Comment"` }
表字段
Click to show internal directories.
Click to hide internal directories.