14 lines
577 B
Go
14 lines
577 B
Go
package main
|
|
|
|
import app "selective-vpn-api/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()
|
|
}
|