diff --git a/Readme.md b/Readme.md index 536f7b2..bea51f7 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -# go-simpleconf +# gosimpleconf This is a small library for parsing super simple configuration files. diff --git a/go.mod b/go.mod index dd91678..ce1573c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module gitea.wisellama.rocks/Wisellama/go-simpleconf +module gitea.wisellama.rocks/Wisellama/gosimpleconf go 1.17 diff --git a/simpleconf.go b/simpleconf.go index 5ea92e0..f181f3e 100644 --- a/simpleconf.go +++ b/simpleconf.go @@ -1,4 +1,4 @@ -package simpleconf +package gosimpleconf import ( "bufio" diff --git a/simpleconf_test.go b/simpleconf_test.go index 22046f4..95e981d 100644 --- a/simpleconf_test.go +++ b/simpleconf_test.go @@ -1,4 +1,4 @@ -package simpleconf +package gosimpleconf import ( "strings"