added config flixble system

This commit is contained in:
2023-02-22 02:46:11 +00:00
parent c7a665fdc8
commit 4dac4234ad
22 changed files with 440 additions and 799 deletions

11
abstractions/init.go Normal file
View File

@@ -0,0 +1,11 @@
package abstractions
import (
"github.com/Akilan1999/p2p-rendering-computation/config/generate"
)
func Init(name string) {
// set the config file with default paths
generate.SetDefaults(name)
}