5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-18 16:09:14 +00:00

8 lines
232 B
Go
Raw Normal View History

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)
}