From aebc4d3647b9823ae8cbb57b21b1af83bfd011fb Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sat, 28 May 2022 11:35:50 -0700 Subject: Misc cleanup * Removed some unnecessary user of pointers * Removed dead cruft * Reorganized code --- cmd/mobius-hotline-server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/mobius-hotline-server/main.go b/cmd/mobius-hotline-server/main.go index cf69ea8..aa1f015 100644 --- a/cmd/mobius-hotline-server/main.go +++ b/cmd/mobius-hotline-server/main.go @@ -44,7 +44,7 @@ func main() { logger.Fatalw("Configuration directory not found", "path", configDir) } - hotline.FS = hotline.OSFileStore{} + hotline.FS = &hotline.OSFileStore{} srv, err := hotline.NewServer(*configDir, "", *basePort, logger) if err != nil { -- cgit