diff options
| author | lost+skunk <[email protected]> | 2024-07-13 22:12:50 +0300 |
|---|---|---|
| committer | lost+skunk <[email protected]> | 2024-07-13 22:12:50 +0300 |
| commit | 097d58e16c503d0e6fd9ebe9cd84d257387c8284 (patch) | |
| tree | d5747426aa8c089184fcee6d866ac8fb0f8229e9 /app/config.go | |
| parent | cd86606f7a155752d78337378ad6e9fa6880122b (diff) | |
| download | skunky-art-097d58e16c503d0e6fd9ebe9cd84d257387c8284.tar.gz skunky-art-097d58e16c503d0e6fd9ebe9cd84d257387c8284.tar.bz2 skunky-art-097d58e16c503d0e6fd9ebe9cd84d257387c8284.zip | |
Сервис для опенрц
Diffstat (limited to 'app/config.go')
| -rw-r--r-- | app/config.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/config.go b/app/config.go index 96aea40..c848b9c 100644 --- a/app/config.go +++ b/app/config.go @@ -40,9 +40,14 @@ var CFG = config{ func ExecuteConfig() { go func() { + defer func() { + if r := recover(); r != nil { + recover() + } + }() for { Templates["instances.json"] = string(Download("https://git.macaw.me/skunky/SkunkyArt/raw/branch/master/instances.json").Body) - time.Sleep(1 * time.Hour) + time.Sleep(1 * time.Second) } }() |
