mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 07:40:17 +08:00
13 lines
193 B
Go
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)
|
|
}
|