Files
h1z3 5d765a09db
build-and-push / detect (push) Successful in 10s
build-and-push / build (${{ fromJSON(needs.detect.outputs.services) }}) (push) Successful in 51s
sploit for arena-battle
2026-08-26 11:29:05 +03:00

16 lines
202 B
Go

package db
type User struct {
ID int64
Login string
Password string
}
type Video struct {
ID int64
UserID int64
Description string
Private bool
Link string
}