add name and version
This commit is contained in:
parent
809c45c301
commit
eb4c287da0
10
instance.go
10
instance.go
|
@ -40,6 +40,16 @@ func Http() *http.Server {
|
||||||
return std.Http()
|
return std.Http()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Name() string {
|
||||||
|
initApplication()
|
||||||
|
return std.opts.Name
|
||||||
|
}
|
||||||
|
|
||||||
|
func Version() string {
|
||||||
|
initApplication()
|
||||||
|
return std.opts.Version
|
||||||
|
}
|
||||||
|
|
||||||
func Debug() bool {
|
func Debug() bool {
|
||||||
initApplication()
|
initApplication()
|
||||||
return std.opts.EnableDebug
|
return std.opts.EnableDebug
|
||||||
|
|
Loading…
Reference in New Issue