main.go 223 B

1234567891011121314151617
  1. package main
  2. import (
  3. "os"
  4. "github.com/sirupsen/logrus"
  5. )
  6. func main() {
  7. logrus.SetOutput(os.Stderr)
  8. logrus.SetFormatter(&logrus.TextFormatter{
  9. ForceColors: true,
  10. })
  11. logrus.Error("not implemented")
  12. os.Exit(1)
  13. }