diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-19 13:24:46 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-19 13:24:46 -0400 |
commit | 601c10309dd93c55c3c825c5a5c2384d46493589 (patch) | |
tree | bcf936efe122c14b048e57da5169e9e5e4ef7a7d /modules | |
parent | 757f360949989214a9161f17a82aedf2b647457a (diff) | |
download | gitea-601c10309dd93c55c3c825c5a5c2384d46493589.tar.gz gitea-601c10309dd93c55c3c825c5a5c2384d46493589.zip |
Bug fix
Diffstat (limited to 'modules')
-rw-r--r-- | modules/base/conf.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/base/conf.go b/modules/base/conf.go index 41226459d9..b003dea50c 100644 --- a/modules/base/conf.go +++ b/modules/base/conf.go @@ -172,8 +172,9 @@ func init() { AppUrl = Cfg.MustValue("server", "ROOT_URL") Domain = Cfg.MustValue("server", "DOMAIN") SecretKey = Cfg.MustValue("security", "SECRET_KEY") +} - // Extensions. +func NewServices() { newService() newLogService() newMailService() |