13 lines
233 B
Go
13 lines
233 B
Go
package common
|
|
|
|
import (
|
|
"fiskerinc.com/modules/common/dbbasemodel"
|
|
)
|
|
|
|
type TRexSetting struct {
|
|
CANEnabled bool `pg:"can_enabled"`
|
|
LogLevel string `pg:"logging_level"`
|
|
VIN string `pg:",pk"`
|
|
dbbasemodel.DBModelBase
|
|
}
|