Sobes.tech
Middle

hlavní balíček import "fmt" func execute šablona string, args ...interface{}) string { return šablona } func main() { res := execute("mailbox/:mailbox/folder/:folder_id", "inbox", 123) // Výstup: mailbox/inbox/folder/123 fmt.Println(res) }