5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-17 06:39:14 +00:00

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
}