Add TOML based config file

The config file may provide default values or user sepcific settings.
This commit is contained in:
2022-01-13 08:43:05 +01:00
parent d20eb306fd
commit fdc344d6d6
7 changed files with 157 additions and 7 deletions

7
go.mod
View File

@ -1,5 +1,8 @@
module idicon
go 1.16
go 1.17
require github.com/gorilla/mux v1.8.0
require (
github.com/BurntSushi/toml v1.0.0
github.com/gorilla/mux v1.8.0
)