mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
9 lines
235 B
Go
9 lines
235 B
Go
package models
|
|
|
|
type TokenV2 struct {
|
|
any `collection:"tokens"`
|
|
BaseModelV2[TokenV2] `bson:",inline"`
|
|
Name string `json:"name" bson:"name"`
|
|
Token string `json:"token" bson:"token"`
|
|
}
|