mirror of
https://github.com/1f349/daisy.git
synced 2024-12-22 07:24:15 +00:00
13 lines
199 B
Go
13 lines
199 B
Go
package daisy
|
|
|
|
import (
|
|
"github.com/charmbracelet/log"
|
|
"os"
|
|
)
|
|
|
|
var Logger = log.NewWithOptions(os.Stderr, log.Options{
|
|
ReportCaller: true,
|
|
ReportTimestamp: true,
|
|
Prefix: "Daisy",
|
|
})
|