feat: moved go files to root

This commit is contained in:
Simon Cornet 2025-03-06 11:42:24 +01:00
commit 379e54efd7
3 changed files with 0 additions and 0 deletions

View file

@ -1,14 +0,0 @@
package logging
var applicationName = "MyApp"
// Sets the application name prefix used in the logoutput. Example:
// <applicationName> | ...
func SetAppName(name string) {
applicationName = name
}
// Returns the logging prefix name as string.
func GetAppName() string {
return applicationName
}