clean: removed use of "." in imports

This commit is contained in:
Florian Sylvain
2023-08-13 02:48:19 +02:00
parent 2525a64d0a
commit c6bd7731cc
14 changed files with 82 additions and 75 deletions
@@ -1,7 +1,7 @@
package gateways
import (
. "GohCMS2/domain/gateways"
"GohCMS2/domain/gateways"
"bytes"
"embed"
"html/template"
@@ -29,4 +29,4 @@ func (p *PageRepository) Get(name string, data interface{}) ([]byte, error) {
return processedHTML.Bytes(), nil
}
var _ IPageRepository = &PageRepository{}
var _ gateways.IPageRepository = &PageRepository{}