InitMaintenance : Wartungsprozess initialisieren
()
| 8 | |
| 9 | // InitMaintenance : Wartungsprozess initialisieren |
| 10 | func InitMaintenance() (err error) { |
| 11 | |
| 12 | rand.Seed(time.Now().Unix()) |
| 13 | System.TimeForAutoUpdate = fmt.Sprintf("0%d%d", randomTime(0, 2), randomTime(10, 59)) |
| 14 | |
| 15 | go maintenance() |
| 16 | |
| 17 | return |
| 18 | } |
| 19 | |
| 20 | func maintenance() { |
| 21 |
nothing calls this directly
no test coverage detected