diff options
author | xengineering <me@xengineering.eu> | 2023-03-27 20:08:07 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-03-27 20:08:07 +0200 |
commit | 5c2d27cd4adbf517a15b7b4644098fa42d69df19 (patch) | |
tree | c07c1487a4a4b0b6f8f3d7326265752f15aaada6 /main.go | |
parent | ab28c680f57c73f80e602dd74f8b2eeaecc88f11 (diff) | |
download | webiot-5c2d27cd4adbf517a15b7b4644098fa42d69df19.tar webiot-5c2d27cd4adbf517a15b7b4644098fa42d69df19.tar.zst webiot-5c2d27cd4adbf517a15b7b4644098fa42d69df19.zip |
Apply `go fmt` to all files
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,5 +1,3 @@ -// vim: shiftwidth=4 tabstop=4 noexpandtab - package main import ( @@ -15,7 +13,7 @@ import ( "text/template" ) -var appdata string; +var appdata string type RuntimeConfig struct { Devices DevicesConfig @@ -27,7 +25,7 @@ type DevicesConfig struct { } type WebConfig struct { - Listen netip.AddrPort + Listen netip.AddrPort } // main() contains the control flow of this program. |