gobuch/module-logrus/main.go

10 lines
104 B
Go
Raw Permalink Normal View History

2020-08-21 04:26:40 +00:00
package main
import (
log "github.com/sirupsen/logrus"
)
func main() {
log.Println("Hello World")
}