mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-19 07:01:02 +01:00
33 lines
481 B
Go
33 lines
481 B
Go
package ini
|
|
|
|
type lineToken interface {
|
|
isLineToken()
|
|
}
|
|
|
|
type lineTokenProfile struct {
|
|
Type string
|
|
Name string
|
|
}
|
|
|
|
func (*lineTokenProfile) isLineToken() {}
|
|
|
|
type lineTokenProperty struct {
|
|
Key string
|
|
Value string
|
|
}
|
|
|
|
func (*lineTokenProperty) isLineToken() {}
|
|
|
|
type lineTokenContinuation struct {
|
|
Value string
|
|
}
|
|
|
|
func (*lineTokenContinuation) isLineToken() {}
|
|
|
|
type lineTokenSubProperty struct {
|
|
Key string
|
|
Value string
|
|
}
|
|
|
|
func (*lineTokenSubProperty) isLineToken() {}
|