Updates regarding moving to source.pztrn.name and dependencies bundling with golang/dep.

This commit is contained in:
2018-02-02 09:17:40 +05:00
parent e969b7018d
commit 14a19622bc
723 changed files with 251025 additions and 488 deletions

View File

@@ -18,15 +18,15 @@
package configurationinterface
import (
// local
"lab.pztrn.name/pztrn/opensaps/config/struct"
// local
"source.pztrn.name/misc/opensaps/config/struct"
)
type ConfigurationInterface interface {
GetConfig() *configstruct.ConfigStruct
GetTempValue(key string) (string, error)
Initialize()
InitializeLater()
LoadConfigurationFromFile()
SetTempValue(key, value string)
GetConfig() *configstruct.ConfigStruct
GetTempValue(key string) (string, error)
Initialize()
InitializeLater()
LoadConfigurationFromFile()
SetTempValue(key, value string)
}