1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-02 13:04:14 +00:00
Beego/vendor/github.com/Knetic/govaluate/ExpressionToken.go

10 lines
128 B
Go
Raw Normal View History

2018-11-09 04:37:28 +00:00
package govaluate
/*
Represents a single parsed token.
*/
type ExpressionToken struct {
Kind TokenKind
Value interface{}
}