feat: translator

This commit is contained in:
Bobo
2025-05-14 20:43:37 +08:00
parent 982e18a991
commit 3b2678de10
13 changed files with 564 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package google
import "net/url"
// javascript "encodeURI()"
// so we embed js to our golang program
func encodeURI(s string) string {
return url.QueryEscape(s)
}