this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(hetzner): actually fix urls use variable properly

dusk 8049f0b5 696af4a2

+2 -2
+2 -2
firewall/provider/hetzner/app.nu
··· 6 6 return $"https://api.hetzner.cloud/v1($path)" 7 7 } 8 8 def post [path: string] { 9 - $in | http post -e --full -H $authHeader --content-type application/json (makeApiUrl path) 9 + $in | http post -e --full -H $authHeader --content-type application/json (makeApiUrl $path) 10 10 } 11 11 def get [path: string] { 12 - http get -e --full -H $authHeader (makeApiUrl path) 12 + http get -e --full -H $authHeader (makeApiUrl $path) 13 13 } 14 14 15 15 # first fetch firewall to see if it even exists