| 12345678910111213141516171819 |
- package module
- import (
- "log"
- "github.com/gorilla/mux"
- "github.com/jinzhu/gorm"
- )
- // Conf is the module configuration accessible globally
- var Conf Config
- type Config struct {
- Router *mux.Router
- BasePath string
- DB *gorm.DB
- Debug bool
- Logger *log.Logger
- }
|