There is no reason to export this functions and this types.

This commit is contained in:
claudemiro
2015-01-31 15:12:54 -03:00
parent d74426127c
commit 201cba86a9
14 changed files with 193 additions and 195 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ import (
)
// Conf holds the global configuration state
var Conf ConfigFile
var Conf configFile
// Start Parse the configuration file and starts the ipe server
func Start(configfile string) error {
@@ -26,7 +26,7 @@ func Start(configfile string) error {
}
Conf.Init()
router := NewRouter()
router := newRouter()
if err := http.ListenAndServe(Conf.Host, router); err != nil {
return err