mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 06:20:28 +00:00
0bc159341d
* Update vendor * Fix godiscord api change
17 lines
373 B
Go
17 lines
373 B
Go
package stdlib
|
|
|
|
import "github.com/d5/tengo/objects"
|
|
|
|
// BuiltinModules are builtin type standard library modules.
|
|
var BuiltinModules = map[string]map[string]objects.Object{
|
|
"math": mathModule,
|
|
"os": osModule,
|
|
"text": textModule,
|
|
"times": timesModule,
|
|
"rand": randModule,
|
|
"fmt": fmtModule,
|
|
"json": jsonModule,
|
|
"base64": base64Module,
|
|
"hex": hexModule,
|
|
}
|