feat: publish standalone worker

Separate worker packaging and service lifecycle from the control plane.
Этот коммит содержится в:
Gleb Tv
2026-07-13 17:55:14 +03:00
Коммит 2c7a0236da
309 изменённых файлов: 44004 добавлений и 0 удалений

11
checks/calls/init_test.go Обычный файл
Просмотреть файл

@@ -0,0 +1,11 @@
package calls
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestIsDBAvailableWithoutInitializedDatabase(t *testing.T) {
assert.False(t, isDBAvailable())
}