[NOD-492] Split API-Server to syncer and frontend applications (#519)

* [NOD-492] Split ApiServer to server and syncd.

* [NOD-492] Add missing file.

* [NOD-492] Remove references to --migrate from common config.

* [NOD-492] Move MQTT to the sync daemon.

* [NOD-492] Fix server Dockerfile and create one for syncd.

* [NOD-492] Rename ApiServer to Kasparov.

* [NOD-492] Fix packages.

* [NOD-492] Fix more packages.

* [NOD-492] Fix comments and package names.

* [NOD-492] Move blank import packages to main.

* [NOD-492] Move common logging logic out of individual config.go files.

* [NOD-492] Move database models to a package called dbmodels.

* [NOD-492] Rename models package to apimodels.
This commit is contained in:
stasatdaglabs
2019-12-08 14:38:47 +02:00
committed by Ori Newman
parent 11e936d109
commit 683dd52fcf
52 changed files with 327 additions and 173 deletions

View File

@@ -1,7 +1,7 @@
package httpserverutils
import "github.com/daglabs/btcd/util/panics"
import "github.com/daglabs/btcd/apiserver/logger"
import "github.com/daglabs/btcd/kasparov/logger"
var (
log = logger.BackendLog.Logger("UTIL")