reformat some stuff

This commit is contained in:
2026-08-03 21:01:58 -04:00
parent c3bee53ade
commit 1fddaf3f67
8 changed files with 63 additions and 48 deletions
+8
View File
@@ -0,0 +1,8 @@
package caldav
import "strings"
func convert_username_into_url(username string) string {
result := strings.ReplaceAll(username, "@", "%40")
return result
}