Update README.md - changed conflicting imports

This commit is contained in:
Roman Konz 2014-12-05 11:00:48 +01:00
parent 6c28e16200
commit 5e322e5cfe
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
import ( import (
"log/syslog" "log/syslog"
"github.com/Sirupsen/logrus" "github.com/Sirupsen/logrus"
"github.com/Sirupsen/logrus/hooks/syslog" logrus_syslog "github.com/Sirupsen/logrus/hooks/syslog"
) )
func main() { func main() {
@ -17,4 +17,4 @@ func main() {
log.Hooks.Add(hook) log.Hooks.Add(hook)
} }
} }
``` ```