5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 07:40:17 +08:00
wails/runtime_log.go
2019-01-08 07:58:46 +11:00

13 lines
193 B
Go

package wails
type RuntimeLog struct {
}
func newRuntimeLog() *RuntimeLog {
return &RuntimeLog{}
}
func (r *RuntimeLog) New(prefix string) *CustomLogger {
return newCustomLogger(prefix)
}