2022-09-02 23:38:05 +01:00
|
|
|
package value
|
|
|
|
|
|
|
|
type Value interface {
|
|
|
|
ToString() string
|
|
|
|
ToInt() int
|
|
|
|
|
|
|
|
IsString() bool
|
|
|
|
IsInt() bool
|
2022-09-03 16:35:17 +01:00
|
|
|
|
|
|
|
Dump() string
|
2022-09-02 23:38:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func Init() {
|
|
|
|
// No-op to avoid unused import errors...
|
|
|
|
}
|