Allow to use env vars in config

This commit is contained in:
Mikołaj Pęczkowski 2021-11-03 18:20:28 +01:00
parent 5e6a5e23fd
commit 2b4c6d3318
4 changed files with 35 additions and 28 deletions

View file

@ -10,7 +10,7 @@ import (
const (
APP_NAME = "Git repository manager"
APP_DESCRIPTION = "Manage your repository with simple app"
VERSION = "0.1"
VERSION = "0.1.1"
)
type GitRepositoryManager struct {

View file

@ -90,5 +90,5 @@ func Example_test_sync_output() {
// Output:
// Info: Synchronizing repositories
// Info: All repositories are synced
// Info: Current version: 0.1
// Info: Current version: 0.1.1
}