mirror of
https://github.com/veops/oneterm.git
synced 2025-10-05 23:37:03 +08:00
24 lines
774 B
Go
24 lines
774 B
Go
package model
|
|
|
|
var (
|
|
DefaultAccount = &Account{}
|
|
DefaultAsset = &Asset{}
|
|
DefaultAuthorization = &Authorization{}
|
|
DefaultCommand = &Command{}
|
|
DefaultCommandTemplate = &CommandTemplate{}
|
|
DefaultConfig = &Config{}
|
|
DefaultFileHistory = &FileHistory{}
|
|
DefaultGateway = &Gateway{}
|
|
DefaultHistory = &History{}
|
|
DefaultNode = &Node{}
|
|
DefaultPublicKey = &PublicKey{}
|
|
DefaultSession = &Session{}
|
|
DefaultSessionCmd = &SessionCmd{}
|
|
DefaultShare = &Share{}
|
|
DefaultQuickCommand = &QuickCommand{}
|
|
DefaultUserPreference = &UserPreference{}
|
|
DefaultStorageConfig = &StorageConfig{}
|
|
DefaultStorageMetrics = &StorageMetrics{}
|
|
DefaultMigrationRecord = &MigrationRecord{}
|
|
)
|