1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-04 18:15:09 +00:00
Beego/vendor/github.com/Knetic/govaluate/ExpressionToken.go
2018-11-09 12:37:28 +08:00

10 lines
128 B
Go

package govaluate
/*
Represents a single parsed token.
*/
type ExpressionToken struct {
Kind TokenKind
Value interface{}
}