Path: blob/dev/pkg/js/generated/go/librdp/rdp.go
2866 views
package rdp12import (3lib_rdp "github.com/projectdiscovery/nuclei/v3/pkg/js/libs/rdp"45"github.com/Mzack9999/goja"6"github.com/projectdiscovery/nuclei/v3/pkg/js/gojs"7)89var (10module = gojs.NewGojaModule("nuclei/rdp")11)1213func init() {14module.Set(15gojs.Objects{16// Functions17"CheckRDPAuth": lib_rdp.CheckRDPAuth,18"CheckRDPEncryption": lib_rdp.CheckRDPEncryption,19"IsRDP": lib_rdp.IsRDP,2021// Var and consts2223// Objects / Classes24"CheckRDPAuthResponse": gojs.GetClassConstructor[lib_rdp.CheckRDPAuthResponse](&lib_rdp.CheckRDPAuthResponse{}),25"CheckRDPEncryptionResponse": gojs.GetClassConstructor[lib_rdp.RDPEncryptionResponse](&lib_rdp.RDPEncryptionResponse{}),26"IsRDPResponse": gojs.GetClassConstructor[lib_rdp.IsRDPResponse](&lib_rdp.IsRDPResponse{}),27},28).Register()29}3031func Enable(runtime *goja.Runtime) {32module.Enable(runtime)33}343536