mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-02 15:30:01 +00:00
66b77acb1c
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8 lines
143 B
Go
8 lines
143 B
Go
package expr
|
|
|
|
// Term represents a value that can Evaluate() into an integer.
|
|
type Term interface {
|
|
Free()
|
|
Evaluate() (int64, error)
|
|
}
|