mirror of
				https://github.com/42wim/matterbridge.git
				synced 2025-11-03 23:37:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			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,
 | 
						|
}
 |