Documentation
¶
Index ¶
- Constants
- func CheckPasswordHash(password, hash string) bool
- func ComputeHmac256() string
- func Copy(to, from interface{}, params ...CopyEngine) (err error)
- func CopyFile(f, t string)
- func Dir() string
- func FileExist(path string) (exist bool)
- func FormatSourceCode(filename string)
- func GetFileSize(name string) (int64, error)
- func GetFullPath(name string) string
- func GetLinkPath(name string) string
- func HashPassword(password string) (string, error)
- func Int(v int) *int
- func Int64(v int64) *int64
- func Int64Value(v *int64) int64
- func IntValue(v *int) int
- func ParseHmacToken(tokenString string, key []byte) (jwt.MapClaims, error)
- func RandInt(min int, max int) int
- func RandStr(strSize int, dictionary string) string
- func RandomString(l int) string
- func Rounding(num float64, k uint) float64
- func Start(app *fx.App)
- func StaticPath() string
- func Stop(app *fx.App)
- func StoragePath() string
- func String(v string) *string
- func StringValue(v *string) string
- func Strtomd5(s string) string
- func TestMode() bool
- func Time(v time.Time) *time.Time
- func TimeValue(v *time.Time) time.Time
- func Work()
- type AttributeType
- type ConditionType
- type CopyEngine
- type EntityHistoryType
- type EntityId
- type EntityType
- type GinEngine
- type Icon
- type LogLevel
- type Logger
- func (l *Logger) Debug(format string, args ...interface{})
- func (l *Logger) Debugf(format string, args ...interface{})
- func (l *Logger) Error(format string, args ...interface{})
- func (l *Logger) Errorf(format string, args ...interface{})
- func (l *Logger) Fatal(format string, args ...interface{})
- func (l *Logger) Fatalf(format string, args ...interface{})
- func (l *Logger) Info(format string, args ...interface{})
- func (l *Logger) Infof(format string, args ...interface{})
- func (l *Logger) Warn(format string, args ...interface{})
- func (l *Logger) Warnf(format string, args ...interface{})
- type MapElementPrototypeId
- type MapElementPrototypeType
- type MetricType
- type PluginInfo
- type PluginManager
- type RunMode
- type ScriptLang
- type StatusType
- type Validation
Constants ¶
View Source
const ( // Alphanum ... Alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" // Alpha ... Alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" // Number ... Number = "0123456789" )
View Source
const ( // JsonEngine ... JsonEngine = CopyEngine("json") // GobEngine ... GobEngine = CopyEngine("gob") // GojayEngine ... GojayEngine = CopyEngine("gojay") )
View Source
const ( // ScriptLangTs ... ScriptLangTs = ScriptLang("ts") // ScriptLangCoffee ... ScriptLangCoffee = ScriptLang("coffeescript") // ScriptLangJavascript ... ScriptLangJavascript = ScriptLang("javascript") )
View Source
const ( // Enabled ... Enabled = StatusType("enabled") // Disabled ... Disabled = StatusType("disabled") // Frozen ... Frozen = StatusType("frozen") )
View Source
const ( // MapElementPrototypeText ... MapElementPrototypeText = MapElementPrototypeType("text") // MapElementPrototypeImage ... MapElementPrototypeImage = MapElementPrototypeType("image") // MapElementPrototypeEntity ... MapElementPrototypeEntity = MapElementPrototypeType("entity") // MapElementPrototypeEmpty ... MapElementPrototypeEmpty = MapElementPrototypeType("") )
View Source
const ( // LogLevelEmergency ... LogLevelEmergency = LogLevel("Emergency") // LogLevelAlert ... LogLevelAlert = LogLevel("Alert") // LogLevelCritical ... LogLevelCritical = LogLevel("Critical") // LogLevelError ... LogLevelError = LogLevel("Error") // LogLevelWarning ... LogLevelWarning = LogLevel("Warning") // LogLevelNotice ... LogLevelNotice = LogLevel("Notice") // LogLevelInfo ... LogLevelInfo = LogLevel("Info") // LogLevelDebug ... LogLevelDebug = LogLevel("Debug") )
View Source
const ( // EntityHistoryState ... EntityHistoryState = EntityHistoryType("state") // EntityHistoryOption ... EntityHistoryOption = EntityHistoryType("option") )
View Source
const ( // MetricTypeLine ... MetricTypeLine = MetricType("line") // MetricTypeBar ... MetricTypeBar = MetricType("bar") // MetricTypeDoughnut ... MetricTypeDoughnut = MetricType("doughnut") // MetricTypeRadar ... MetricTypeRadar = MetricType("radar") // MetricTypePie ... MetricTypePie = MetricType("pie") // MetricTypeHorizontalBar ... MetricTypeHorizontalBar = MetricType("horizontal bar") )
View Source
const ( AttributeString = AttributeType("string") AttributeInt = AttributeType("int") AttributeTime = AttributeType("time") AttributeBool = AttributeType("bool") AttributeFloat = AttributeType("float") //DEPRECATED AttributeArray = AttributeType("array") AttributeMap = AttributeType("map") )
View Source
const ( ConditionOr = ConditionType("or") ConditionAnd = ConditionType("and") )
View Source
const ( // DebugMode ... DebugMode = RunMode("debug") // ReleaseMode ... ReleaseMode = RunMode("release") )
View Source
const DefaultPageSize int64 = 15
Variables ¶
This section is empty.
Functions ¶
func FormatSourceCode ¶ added in v0.5.0
func FormatSourceCode(filename string)
func ParseHmacToken ¶
ParseHmacToken ...
Types ¶
type AttributeType ¶ added in v0.5.0
type AttributeType string
type ConditionType ¶ added in v0.5.0
type ConditionType string
type EntityId ¶ added in v0.5.0
type EntityId string
EntityId ...
func NewEntityId ¶ added in v0.5.0
func (EntityId) Type ¶ added in v0.5.0
func (e EntityId) Type() EntityType
type EntityType ¶ added in v0.5.0
type EntityType string
EntityType ...
func (EntityType) String ¶ added in v0.5.0
func (e EntityType) String() string
type Logger ¶ added in v0.1.3
type Logger struct {
// contains filtered or unexported fields
}
Logger ...
type MapElementPrototypeId ¶ added in v0.5.0
type MapElementPrototypeId interface{}
MapElementPrototypeId ...
type MapElementPrototypeType ¶ added in v0.5.0
type MapElementPrototypeType string
MapElementPrototypeType ...
type PluginInfo ¶ added in v0.5.0
type PluginManager ¶ added in v0.5.0
type Validation ¶ added in v0.0.19
type Validation struct {
}
Validation ...
func (Validation) Valid ¶ added in v0.0.19
func (d Validation) Valid() (ok bool, errs []*validation.Error)
Valid ...
Source Files
¶
Click to show internal directories.
Click to hide internal directories.