1
0
forked from MTSR/mapserver
This commit is contained in:
NatureFreshMilk 2019-02-05 13:37:39 +01:00
parent 87cda39a1a
commit ac31a09e4d
3 changed files with 1 additions and 23 deletions

View File

@ -1,11 +0,0 @@
package db
import (
"github.com/sirupsen/logrus"
)
var log *logrus.Entry
func init() {
log = logrus.WithFields(logrus.Fields{"prefix": "db"})
}

View File

@ -2,7 +2,7 @@ package postgres
import (
"database/sql"
_ "github.com/mattn/go-sqlite3"
_ "https://github.com/lib/pq"
"mapserver/coords"
"mapserver/db"
)

View File

@ -1,11 +0,0 @@
package mapobjectdb
import (
"github.com/sirupsen/logrus"
)
var log *logrus.Entry
func init() {
log = logrus.WithFields(logrus.Fields{"prefix": "mapobjectdb"})
}