package services import "github.com/sirupsen/logrus" var ( log = logrus.WithField("module", "main") ) type Service struct { } func (s *Service) Hello() { log.Info("hello") }