13 lines
273 B
Go
13 lines
273 B
Go
|
|
package helper
|
||
|
|
|
||
|
|
import (
|
||
|
|
"db_service/models"
|
||
|
|
"github.com/leesper/couchdb-golang"
|
||
|
|
)
|
||
|
|
|
||
|
|
// CdbServer is global couchdb server
|
||
|
|
var CdbServer *couchdb.Server
|
||
|
|
|
||
|
|
// Categories stores all categories and their weight
|
||
|
|
var Categories []models.CouchCategory = []models.CouchCategory{}
|