5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 07:52:32 +00:00
matterbridge/vendor/github.com/d5/tengo/objects/importable.go

8 lines
232 B
Go

package objects
// Importable interface represents importable module instance.
type Importable interface {
// Import should return either an Object or module source code ([]byte).
Import(moduleName string) (interface{}, error)
}