mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 22:14:25 +01:00
21 lines
334 B
Python
21 lines
334 B
Python
from collections import namedtuple
|
|
|
|
TeamAttrs = namedtuple(
|
|
"TeamAttrs",
|
|
[
|
|
"id",
|
|
"oauth_id",
|
|
"name",
|
|
"email",
|
|
"secret",
|
|
"website",
|
|
"affiliation",
|
|
"country",
|
|
"bracket",
|
|
"hidden",
|
|
"banned",
|
|
"captain_id",
|
|
"created",
|
|
],
|
|
)
|