mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
0bc159341d
* Update vendor * Fix godiscord api change
12 lines
261 B
Go
12 lines
261 B
Go
package stdlib
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"github.com/d5/tengo/objects"
|
|
)
|
|
|
|
var hexModule = map[string]objects.Object{
|
|
"encode": &objects.UserFunction{Value: FuncAYRS(hex.EncodeToString)},
|
|
"decode": &objects.UserFunction{Value: FuncASRYE(hex.DecodeString)},
|
|
}
|