713ab02450
* Added configor as a new library
Now config is a singleton. You only need to do config.Get() instead of doing config.Conf.
* Forgot godep save 🐤
* Fix accidental removal of }
15 lignes
278 o
Go
15 lignes
278 o
Go
package cookies
|
|
|
|
import "github.com/NyaaPantsu/nyaa/config"
|
|
|
|
func getDomainName() string {
|
|
domain := config.Get().Cookies.DomainName
|
|
if config.Get().Environment == "DEVELOPMENT" {
|
|
domain = ""
|
|
}
|
|
return domain
|
|
}
|
|
|
|
func getMaxAge() int {
|
|
return config.Get().Cookies.MaxAge
|
|
}
|