Add test for making QR code url

This commit is contained in:
9seconds
2021-07-30 15:18:26 +03:00
parent ed91290e47
commit c53364d952
2 changed files with 32 additions and 1 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ func MakeQRCodeURL(data string) string {
rv := url.URL{
Scheme: "https",
Host: "api.qrserver.com",
Path: "v1/create-qr-code",
Path: "/v1/create-qr-code",
RawQuery: values.Encode(),
}