fix: remove config file from repo

This commit is contained in:
Patryk Hegenberg 2024-12-28 11:57:07 +01:00
parent 3c75c20f4f
commit 5a154429d8
3 changed files with 2 additions and 13 deletions

View file

@ -16,7 +16,6 @@ import (
)
type Config struct {
SSHPort int `mapstructure:"SSH_PORT"`
SSHUser string `mapstructure:"SSH_USER"`
SSHHost string `mapstructure:"SSH_HOST"`
VardaUser string `mapstructure:"VARDA_USER"`
@ -27,6 +26,7 @@ type Config struct {
RDPUser string `mapstructure:"RDP_USER"`
RDPPassword string `mapstructure:"RDP_PASSWORD"`
LouIP string `mapstructure:"LOU_IP"`
SSHPort int `mapstructure:"SSH_PORT"`
}
var cfg Config