Files
ALPHA-TRAIN2/services_vulnerable/tiktak/db/models.go
T
bobiqq c231be0094
build-and-push / detect (push) Successful in 7s
build-and-push / build (${{ fromJSON(needs.detect.outputs.services) }}) (push) Failing after 3m33s
services
2026-08-26 11:04:23 +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
}