mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-15 16:39:26 +01:00
8 lines
232 B
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)
|
|
}
|