menu-traversal-refactor #109

Closed
carlos wants to merge 24 commits from menu-traversal-refactor into master
2 changed files with 10 additions and 0 deletions
Showing only changes of commit 5937e7ea9d - Show all commits

5
engine/tag_offline.go Normal file
View File

@ -0,0 +1,5 @@
// +build !online
package engine
const OnlineTestEnabled = false
Outdated
Review

I would just define the accountservice as a global directly here, instead of the detour of defining a variable

I would just define the accountservice as a global directly here, instead of the detour of defining a variable

5
engine/tag_online.go Normal file
View File

@ -0,0 +1,5 @@
// +build online
package engine
const OnlineTestEnabled = true