vendor struct

master
Matthew 2024-10-23 19:44:01 -04:00
parent 6dcee20a1c
commit b897a8e331
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 8 additions and 0 deletions

8
internal/db/Vendor.go Normal file
View File

@ -0,0 +1,8 @@
package db
type Vendor struct {
ID string `bson:"vendorID"`
Name string `bson:"name"`
PermissionLevel int `bson:"permissionLevel"`
Key string `bson:"key"`
}