service.go 180 B

1234567891011121314
  1. package services
  2. import "github.com/sirupsen/logrus"
  3. var (
  4. log = logrus.WithField("module", "main")
  5. )
  6. type Service struct {
  7. }
  8. func (s *Service) Hello() {
  9. log.Info("hello")
  10. }