platform: modularize api/gui, add docs-tests-web foundation, and refresh root config

This commit is contained in:
beckline
2026-03-26 22:40:54 +03:00
parent 0e2d7f61ea
commit 6a56d734c2
562 changed files with 70151 additions and 16423 deletions

View File

@@ -2,8 +2,12 @@ package main
import app "selective-vpn-api/app"
// EN: Thin executable entrypoint that delegates runtime startup to the app package.
// RU: Тонкая точка входа бинаря, делегирующая запуск пакету app.
// EN: Legacy compatibility entrypoint.
// EN: New explicit entrypoints live under cmd/*, this file is kept to avoid
// EN: breaking existing unit/scripts that still call the root binary.
// RU: Legacy-совместимый entrypoint.
// RU: Новые явные точки входа находятся в cmd/*, этот файл сохранён, чтобы
// RU: не ломать существующие unit/скрипты, которые запускают корневой бинарь.
func main() {
app.Run()
}