diff --git a/pkg/internal/gap/server.go b/pkg/internal/gap/server.go index b50d5a5..f43bfa6 100644 --- a/pkg/internal/gap/server.go +++ b/pkg/internal/gap/server.go @@ -3,10 +3,11 @@ package gap import ( "errors" "fmt" - "git.solsynth.dev/hypernet/nexus/pkg/nex/localize" "strings" "time" + "git.solsynth.dev/hypernet/nexus/pkg/nex/localize" + "git.solsynth.dev/hypernet/nexus/pkg/nex" "git.solsynth.dev/hypernet/nexus/pkg/nex/rx" "git.solsynth.dev/hypernet/nexus/pkg/proto" @@ -84,5 +85,5 @@ func InitializeToNexus() error { } func LoadLocalization() error { - return localize.LoadLocalization(viper.GetString("locales_path"), viper.GetString("templates_path")) + return localize.LoadLocalization(viper.GetString("locales_dir"), viper.GetString("templates_dir")) }