-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: inject ParamsKeeper in VMKeeper
Signed-off-by: moul <[email protected]>
- Loading branch information
Showing
12 changed files
with
328 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package std | ||
|
||
// These are native bindings to the banker's functions. | ||
func setConfigString(key string, val string) | ||
func setConfigBool(key string, val bool) | ||
func setConfigInt64(key string, val int64) | ||
func setConfigUint64(key string, val uint64) | ||
|
||
// XXX: add doc | ||
func SetConfig(key string, val interface{}) { | ||
switch v := val.(type) { | ||
case string: | ||
setConfigString(key, v) | ||
case bool: | ||
setConfigBool(key, v) | ||
case int64: | ||
setConfigInt64(key, v) | ||
case uint64: | ||
setConfigUint64(key, v) | ||
default: | ||
panic("unsupported type") | ||
} | ||
} | ||
|
||
// XXX: add doc | ||
//func GetConfig(key string) string { | ||
// return getConfig(key) | ||
//} |
Oops, something went wrong.