Initial cloud-services repo - gateway service + pkg modules

This commit is contained in:
Chris Rai
2026-01-30 23:14:52 -05:00
commit fbb820d7b3
1037 changed files with 171318 additions and 0 deletions

13
pkg/common/sym_keys.go Normal file
View File

@@ -0,0 +1,13 @@
package common
import (
"fiskerinc.com/modules/common/dbbasemodel"
)
type SymKeys struct {
SecOC *BinaryHex `json:"sec_oc" pg:"type:bytea" swaggertype:"string" format:"hex" example:"479672f9d1f12e66332be23543179d680a6c2b91194e24c216cded57d51569c5"`
SecureLogging *BinaryHex `json:"secure_logging" pg:"type:bytea" swaggertype:"string" format:"hex" example:"479672f9d1f12e66332be23543179d680a6c2b91194e24c216cded57d51569c5"`
SecureStorage *BinaryHex `json:"secure_storage" pg:"type:bytea" swaggertype:"string" format:"hex" example:"479672f9d1f12e66332be23543179d680a6c2b91194e24c216cded57d51569c5"`
VIN string `pg:",pk"`
dbbasemodel.DBModelBase
}