mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
12 lines
248 B
Go
12 lines
248 B
Go
package objects
|
|
|
|
// SourceModule is an importable module that's written in Tengo.
|
|
type SourceModule struct {
|
|
Src []byte
|
|
}
|
|
|
|
// Import returns a module source code.
|
|
func (m *SourceModule) Import(_ string) (interface{}, error) {
|
|
return m.Src, nil
|
|
}
|