gobuch/module-logrus/main.go
2020-08-21 06:26:40 +02:00

10 lines
104 B
Go

package main
import (
log "github.com/sirupsen/logrus"
)
func main() {
log.Println("Hello World")
}