mirror of
https://github.com/danog/parser.git
synced 2025-01-22 21:11:55 +01:00
16 lines
180 B
Go
16 lines
180 B
Go
package value
|
|
|
|
type Value interface {
|
|
ToString() string
|
|
ToInt() int
|
|
|
|
IsString() bool
|
|
IsInt() bool
|
|
|
|
Dump() string
|
|
}
|
|
|
|
func Init() {
|
|
// No-op to avoid unused import errors...
|
|
}
|