doodle/pkg/native/username.go

11 lines
113 B
Go

package native
import (
"os"
)
var (
USER string = os.Getenv("USER")
DefaultAuthor = USER
)