A fast and simple blog backend.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
mediocre-blog/src/cfg/mediocre_blog.go

9 lines
258 B

package cfg
// this file contains functionality specific to the mediocre blog.
// NewBlogCfg returns a Cfg specifically configured for mediocre blog processes.
func NewBlogCfg(params Params) *Cfg {
params.EnvPrefix = "MEDIOCRE_BLOG"
return New(params)
}