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,9 +11,9 @@ import (
var id = 0
func newApp() *App {
func newApp() *app {
a := App{Name: "Test", AppID: strconv.Itoa(id), Key: "123", Secret: "123", OnlySSL: false, ApplicationDisabled: false, UserEvents: true}
a := app{Name: "Test", AppID: strconv.Itoa(id), Key: "123", Secret: "123", OnlySSL: false, ApplicationDisabled: false, UserEvents: true}
a.Init()
id++