/
wax_boy
/
semaphore_custom
Обзор
Документация
Войти
/
wax_boy
/
semaphore_custom
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
db/Project.go
17 строк
749 B
Denis Gukov
Secret storage for env (#3143)
14 июл 2025, 14:39
Не верифицирован
14 июл 2025, 14:39
10b4cfc
Код
Авторство
О чём код?
package db import ( "time" ) // Project is the top level structure in Semaphore type Project struct { ID int `db:"id" json:"id" backup:"-"` Name string `db:"name" json:"name" binding:"required"` Created time.Time `db:"created" json:"created" backup:"-"` Alert bool `db:"alert" json:"alert,omitempty"` AlertChat *string `db:"alert_chat" json:"alert_chat,omitempty"` MaxParallelTasks int `db:"max_parallel_tasks" json:"max_parallel_tasks,omitempty"` Type string `db:"type" json:"type"` DefaultSecretStorageID *int `db:"default_secret_storage_id" json:"default_secret_storage_id,omitempty" backup:"-"` }