mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
15 lines
328 B
Go
15 lines
328 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,
|
|
}
|