move some stuff around

This commit is contained in:
2026-07-24 21:11:33 -07:00
parent 0064294c3c
commit 98c8b453a0
3 changed files with 36 additions and 28 deletions
+8
View File
@@ -0,0 +1,8 @@
package main
import "strings"
func convert_username_into_url(username string) string {
result := strings.ReplaceAll(username, "@", "%40")
return result
}