xgo/objects/callable.go

6 lines
91 B
Go
Raw Normal View History

2019-01-10 06:07:03 +03:00
package objects
type Callable interface {
Call(args ...Object) (ret Object, err error)
}