From 0be96a67772250d94674ebb6f8d53a345e51690d Mon Sep 17 00:00:00 2001 From: jkoberg Date: Mon, 18 Oct 2021 09:10:39 +0200 Subject: [PATCH] make linter happy --- graph-explorer/graph_explorer.go | 4 ++-- settings/pkg/assets/assets.go | 3 ++- settings/settings.go | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/graph-explorer/graph_explorer.go b/graph-explorer/graph_explorer.go index da263391a..5367fdc8f 100644 --- a/graph-explorer/graph_explorer.go +++ b/graph-explorer/graph_explorer.go @@ -1,4 +1,4 @@ -package graph_explorer +package graphexplorer import ( "embed" @@ -19,4 +19,4 @@ func init() { } Assets = http.FS(embedFS) -} \ No newline at end of file +} diff --git a/settings/pkg/assets/assets.go b/settings/pkg/assets/assets.go index cf1dc42c9..18b565b20 100644 --- a/settings/pkg/assets/assets.go +++ b/settings/pkg/assets/assets.go @@ -1,11 +1,12 @@ package assets import ( - "github.com/owncloud/ocis/settings" "net/http" "os" "path/filepath" + "github.com/owncloud/ocis/settings" + "github.com/owncloud/ocis/ocis-pkg/log" "github.com/owncloud/ocis/settings/pkg/config" ) diff --git a/settings/settings.go b/settings/settings.go index 51c8153b9..07841a118 100644 --- a/settings/settings.go +++ b/settings/settings.go @@ -19,4 +19,4 @@ func init() { } Assets = http.FS(embedFS) -} \ No newline at end of file +}