deviceinfo

package
v0.2.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 16, 2024 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the deviceinfo type in the database.
	Label = "device_info"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldDeviceName holds the string denoting the device_name field in the database.
	FieldDeviceName = "device_name"
	// FieldSystemType holds the string denoting the system_type field in the database.
	FieldSystemType = "system_type"
	// FieldSystemVersion holds the string denoting the system_version field in the database.
	FieldSystemVersion = "system_version"
	// FieldClientName holds the string denoting the client_name field in the database.
	FieldClientName = "client_name"
	// FieldClientSourceCodeAddress holds the string denoting the client_source_code_address field in the database.
	FieldClientSourceCodeAddress = "client_source_code_address"
	// FieldClientVersion holds the string denoting the client_version field in the database.
	FieldClientVersion = "client_version"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeUser holds the string denoting the user edge name in mutations.
	EdgeUser = "user"
	// EdgeUserSession holds the string denoting the user_session edge name in mutations.
	EdgeUserSession = "user_session"
	// EdgeUserDevice holds the string denoting the user_device edge name in mutations.
	EdgeUserDevice = "user_device"
	// Table holds the table name of the deviceinfo in the database.
	Table = "device_infos"
	// UserTable is the table that holds the user relation/edge. The primary key declared below.
	UserTable = "user_devices"
	// UserInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	UserInverseTable = "users"
	// UserSessionTable is the table that holds the user_session relation/edge.
	UserSessionTable = "user_sessions"
	// UserSessionInverseTable is the table name for the UserSession entity.
	// It exists in this package in order to avoid circular dependency with the "usersession" package.
	UserSessionInverseTable = "user_sessions"
	// UserSessionColumn is the table column denoting the user_session relation/edge.
	UserSessionColumn = "device_info_user_session"
	// UserDeviceTable is the table that holds the user_device relation/edge.
	UserDeviceTable = "user_devices"
	// UserDeviceInverseTable is the table name for the UserDevice entity.
	// It exists in this package in order to avoid circular dependency with the "userdevice" package.
	UserDeviceInverseTable = "user_devices"
	// UserDeviceColumn is the table column denoting the user_device relation/edge.
	UserDeviceColumn = "device_id"
)

Variables

View Source
var (
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
)

Columns holds all SQL columns for deviceinfo fields.

View Source
var (
	// UserPrimaryKey and UserColumn2 are the table columns denoting the
	// primary key for the user relation (M2M).
	UserPrimaryKey = []string{"user_id", "device_id"}
)

Functions

func And

func And(predicates ...predicate.DeviceInfo) predicate.DeviceInfo

And groups predicates with the AND operator between them.

func ClientName

func ClientName(v string) predicate.DeviceInfo

ClientName applies equality check predicate on the "client_name" field. It's identical to ClientNameEQ.

func ClientNameContains

func ClientNameContains(v string) predicate.DeviceInfo

ClientNameContains applies the Contains predicate on the "client_name" field.

func ClientNameContainsFold

func ClientNameContainsFold(v string) predicate.DeviceInfo

ClientNameContainsFold applies the ContainsFold predicate on the "client_name" field.

func ClientNameEQ

func ClientNameEQ(v string) predicate.DeviceInfo

ClientNameEQ applies the EQ predicate on the "client_name" field.

func ClientNameEqualFold

func ClientNameEqualFold(v string) predicate.DeviceInfo

ClientNameEqualFold applies the EqualFold predicate on the "client_name" field.

func ClientNameGT

func ClientNameGT(v string) predicate.DeviceInfo

ClientNameGT applies the GT predicate on the "client_name" field.

func ClientNameGTE

func ClientNameGTE(v string) predicate.DeviceInfo

ClientNameGTE applies the GTE predicate on the "client_name" field.

func ClientNameHasPrefix

func ClientNameHasPrefix(v string) predicate.DeviceInfo

ClientNameHasPrefix applies the HasPrefix predicate on the "client_name" field.

func ClientNameHasSuffix

func ClientNameHasSuffix(v string) predicate.DeviceInfo

ClientNameHasSuffix applies the HasSuffix predicate on the "client_name" field.

func ClientNameIn

func ClientNameIn(vs ...string) predicate.DeviceInfo

ClientNameIn applies the In predicate on the "client_name" field.

func ClientNameLT

func ClientNameLT(v string) predicate.DeviceInfo

ClientNameLT applies the LT predicate on the "client_name" field.

func ClientNameLTE

func ClientNameLTE(v string) predicate.DeviceInfo

ClientNameLTE applies the LTE predicate on the "client_name" field.

func ClientNameNEQ

func ClientNameNEQ(v string) predicate.DeviceInfo

ClientNameNEQ applies the NEQ predicate on the "client_name" field.

func ClientNameNotIn

func ClientNameNotIn(vs ...string) predicate.DeviceInfo

ClientNameNotIn applies the NotIn predicate on the "client_name" field.

func ClientSourceCodeAddress

func ClientSourceCodeAddress(v string) predicate.DeviceInfo

ClientSourceCodeAddress applies equality check predicate on the "client_source_code_address" field. It's identical to ClientSourceCodeAddressEQ.

func ClientSourceCodeAddressContains

func ClientSourceCodeAddressContains(v string) predicate.DeviceInfo

ClientSourceCodeAddressContains applies the Contains predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressContainsFold

func ClientSourceCodeAddressContainsFold(v string) predicate.DeviceInfo

ClientSourceCodeAddressContainsFold applies the ContainsFold predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressEQ

func ClientSourceCodeAddressEQ(v string) predicate.DeviceInfo

ClientSourceCodeAddressEQ applies the EQ predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressEqualFold

func ClientSourceCodeAddressEqualFold(v string) predicate.DeviceInfo

ClientSourceCodeAddressEqualFold applies the EqualFold predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressGT

func ClientSourceCodeAddressGT(v string) predicate.DeviceInfo

ClientSourceCodeAddressGT applies the GT predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressGTE

func ClientSourceCodeAddressGTE(v string) predicate.DeviceInfo

ClientSourceCodeAddressGTE applies the GTE predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressHasPrefix

func ClientSourceCodeAddressHasPrefix(v string) predicate.DeviceInfo

ClientSourceCodeAddressHasPrefix applies the HasPrefix predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressHasSuffix

func ClientSourceCodeAddressHasSuffix(v string) predicate.DeviceInfo

ClientSourceCodeAddressHasSuffix applies the HasSuffix predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressIn

func ClientSourceCodeAddressIn(vs ...string) predicate.DeviceInfo

ClientSourceCodeAddressIn applies the In predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressLT

func ClientSourceCodeAddressLT(v string) predicate.DeviceInfo

ClientSourceCodeAddressLT applies the LT predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressLTE

func ClientSourceCodeAddressLTE(v string) predicate.DeviceInfo

ClientSourceCodeAddressLTE applies the LTE predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressNEQ

func ClientSourceCodeAddressNEQ(v string) predicate.DeviceInfo

ClientSourceCodeAddressNEQ applies the NEQ predicate on the "client_source_code_address" field.

func ClientSourceCodeAddressNotIn

func ClientSourceCodeAddressNotIn(vs ...string) predicate.DeviceInfo

ClientSourceCodeAddressNotIn applies the NotIn predicate on the "client_source_code_address" field.

func ClientVersion

func ClientVersion(v string) predicate.DeviceInfo

ClientVersion applies equality check predicate on the "client_version" field. It's identical to ClientVersionEQ.

func ClientVersionContains

func ClientVersionContains(v string) predicate.DeviceInfo

ClientVersionContains applies the Contains predicate on the "client_version" field.

func ClientVersionContainsFold

func ClientVersionContainsFold(v string) predicate.DeviceInfo

ClientVersionContainsFold applies the ContainsFold predicate on the "client_version" field.

func ClientVersionEQ

func ClientVersionEQ(v string) predicate.DeviceInfo

ClientVersionEQ applies the EQ predicate on the "client_version" field.

func ClientVersionEqualFold

func ClientVersionEqualFold(v string) predicate.DeviceInfo

ClientVersionEqualFold applies the EqualFold predicate on the "client_version" field.

func ClientVersionGT

func ClientVersionGT(v string) predicate.DeviceInfo

ClientVersionGT applies the GT predicate on the "client_version" field.

func ClientVersionGTE

func ClientVersionGTE(v string) predicate.DeviceInfo

ClientVersionGTE applies the GTE predicate on the "client_version" field.

func ClientVersionHasPrefix

func ClientVersionHasPrefix(v string) predicate.DeviceInfo

ClientVersionHasPrefix applies the HasPrefix predicate on the "client_version" field.

func ClientVersionHasSuffix

func ClientVersionHasSuffix(v string) predicate.DeviceInfo

ClientVersionHasSuffix applies the HasSuffix predicate on the "client_version" field.

func ClientVersionIn

func ClientVersionIn(vs ...string) predicate.DeviceInfo

ClientVersionIn applies the In predicate on the "client_version" field.

func ClientVersionLT

func ClientVersionLT(v string) predicate.DeviceInfo

ClientVersionLT applies the LT predicate on the "client_version" field.

func ClientVersionLTE

func ClientVersionLTE(v string) predicate.DeviceInfo

ClientVersionLTE applies the LTE predicate on the "client_version" field.

func ClientVersionNEQ

func ClientVersionNEQ(v string) predicate.DeviceInfo

ClientVersionNEQ applies the NEQ predicate on the "client_version" field.

func ClientVersionNotIn

func ClientVersionNotIn(vs ...string) predicate.DeviceInfo

ClientVersionNotIn applies the NotIn predicate on the "client_version" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.DeviceInfo

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.DeviceInfo

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.DeviceInfo

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.DeviceInfo

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.DeviceInfo

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.DeviceInfo

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.DeviceInfo

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.DeviceInfo

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.DeviceInfo

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func DeviceName added in v0.2.3

func DeviceName(v string) predicate.DeviceInfo

DeviceName applies equality check predicate on the "device_name" field. It's identical to DeviceNameEQ.

func DeviceNameContains added in v0.2.3

func DeviceNameContains(v string) predicate.DeviceInfo

DeviceNameContains applies the Contains predicate on the "device_name" field.

func DeviceNameContainsFold added in v0.2.3

func DeviceNameContainsFold(v string) predicate.DeviceInfo

DeviceNameContainsFold applies the ContainsFold predicate on the "device_name" field.

func DeviceNameEQ added in v0.2.3

func DeviceNameEQ(v string) predicate.DeviceInfo

DeviceNameEQ applies the EQ predicate on the "device_name" field.

func DeviceNameEqualFold added in v0.2.3

func DeviceNameEqualFold(v string) predicate.DeviceInfo

DeviceNameEqualFold applies the EqualFold predicate on the "device_name" field.

func DeviceNameGT added in v0.2.3

func DeviceNameGT(v string) predicate.DeviceInfo

DeviceNameGT applies the GT predicate on the "device_name" field.

func DeviceNameGTE added in v0.2.3

func DeviceNameGTE(v string) predicate.DeviceInfo

DeviceNameGTE applies the GTE predicate on the "device_name" field.

func DeviceNameHasPrefix added in v0.2.3

func DeviceNameHasPrefix(v string) predicate.DeviceInfo

DeviceNameHasPrefix applies the HasPrefix predicate on the "device_name" field.

func DeviceNameHasSuffix added in v0.2.3

func DeviceNameHasSuffix(v string) predicate.DeviceInfo

DeviceNameHasSuffix applies the HasSuffix predicate on the "device_name" field.

func DeviceNameIn added in v0.2.3

func DeviceNameIn(vs ...string) predicate.DeviceInfo

DeviceNameIn applies the In predicate on the "device_name" field.

func DeviceNameLT added in v0.2.3

func DeviceNameLT(v string) predicate.DeviceInfo

DeviceNameLT applies the LT predicate on the "device_name" field.

func DeviceNameLTE added in v0.2.3

func DeviceNameLTE(v string) predicate.DeviceInfo

DeviceNameLTE applies the LTE predicate on the "device_name" field.

func DeviceNameNEQ added in v0.2.3

func DeviceNameNEQ(v string) predicate.DeviceInfo

DeviceNameNEQ applies the NEQ predicate on the "device_name" field.

func DeviceNameNotIn added in v0.2.3

func DeviceNameNotIn(vs ...string) predicate.DeviceInfo

DeviceNameNotIn applies the NotIn predicate on the "device_name" field.

func HasUser added in v0.2.3

func HasUser() predicate.DeviceInfo

HasUser applies the HasEdge predicate on the "user" edge.

func HasUserDevice added in v0.2.3

func HasUserDevice() predicate.DeviceInfo

HasUserDevice applies the HasEdge predicate on the "user_device" edge.

func HasUserDeviceWith added in v0.2.3

func HasUserDeviceWith(preds ...predicate.UserDevice) predicate.DeviceInfo

HasUserDeviceWith applies the HasEdge predicate on the "user_device" edge with a given conditions (other predicates).

func HasUserSession

func HasUserSession() predicate.DeviceInfo

HasUserSession applies the HasEdge predicate on the "user_session" edge.

func HasUserSessionWith

func HasUserSessionWith(preds ...predicate.UserSession) predicate.DeviceInfo

HasUserSessionWith applies the HasEdge predicate on the "user_session" edge with a given conditions (other predicates).

func HasUserWith added in v0.2.3

func HasUserWith(preds ...predicate.User) predicate.DeviceInfo

HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...model.InternalID) predicate.DeviceInfo

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...model.InternalID) predicate.DeviceInfo

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.DeviceInfo) predicate.DeviceInfo

Or groups predicates with the OR operator between them.

func SystemTypeEQ added in v0.2.3

func SystemTypeEQ(v SystemType) predicate.DeviceInfo

SystemTypeEQ applies the EQ predicate on the "system_type" field.

func SystemTypeIn added in v0.2.3

func SystemTypeIn(vs ...SystemType) predicate.DeviceInfo

SystemTypeIn applies the In predicate on the "system_type" field.

func SystemTypeNEQ added in v0.2.3

func SystemTypeNEQ(v SystemType) predicate.DeviceInfo

SystemTypeNEQ applies the NEQ predicate on the "system_type" field.

func SystemTypeNotIn added in v0.2.3

func SystemTypeNotIn(vs ...SystemType) predicate.DeviceInfo

SystemTypeNotIn applies the NotIn predicate on the "system_type" field.

func SystemTypeValidator added in v0.2.3

func SystemTypeValidator(st SystemType) error

SystemTypeValidator is a validator for the "system_type" field enum values. It is called by the builders before save.

func SystemVersion

func SystemVersion(v string) predicate.DeviceInfo

SystemVersion applies equality check predicate on the "system_version" field. It's identical to SystemVersionEQ.

func SystemVersionContains

func SystemVersionContains(v string) predicate.DeviceInfo

SystemVersionContains applies the Contains predicate on the "system_version" field.

func SystemVersionContainsFold

func SystemVersionContainsFold(v string) predicate.DeviceInfo

SystemVersionContainsFold applies the ContainsFold predicate on the "system_version" field.

func SystemVersionEQ

func SystemVersionEQ(v string) predicate.DeviceInfo

SystemVersionEQ applies the EQ predicate on the "system_version" field.

func SystemVersionEqualFold

func SystemVersionEqualFold(v string) predicate.DeviceInfo

SystemVersionEqualFold applies the EqualFold predicate on the "system_version" field.

func SystemVersionGT

func SystemVersionGT(v string) predicate.DeviceInfo

SystemVersionGT applies the GT predicate on the "system_version" field.

func SystemVersionGTE

func SystemVersionGTE(v string) predicate.DeviceInfo

SystemVersionGTE applies the GTE predicate on the "system_version" field.

func SystemVersionHasPrefix

func SystemVersionHasPrefix(v string) predicate.DeviceInfo

SystemVersionHasPrefix applies the HasPrefix predicate on the "system_version" field.

func SystemVersionHasSuffix

func SystemVersionHasSuffix(v string) predicate.DeviceInfo

SystemVersionHasSuffix applies the HasSuffix predicate on the "system_version" field.

func SystemVersionIn

func SystemVersionIn(vs ...string) predicate.DeviceInfo

SystemVersionIn applies the In predicate on the "system_version" field.

func SystemVersionLT

func SystemVersionLT(v string) predicate.DeviceInfo

SystemVersionLT applies the LT predicate on the "system_version" field.

func SystemVersionLTE

func SystemVersionLTE(v string) predicate.DeviceInfo

SystemVersionLTE applies the LTE predicate on the "system_version" field.

func SystemVersionNEQ

func SystemVersionNEQ(v string) predicate.DeviceInfo

SystemVersionNEQ applies the NEQ predicate on the "system_version" field.

func SystemVersionNotIn

func SystemVersionNotIn(vs ...string) predicate.DeviceInfo

SystemVersionNotIn applies the NotIn predicate on the "system_version" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.DeviceInfo

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.DeviceInfo

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.DeviceInfo

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.DeviceInfo

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.DeviceInfo

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.DeviceInfo

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.DeviceInfo

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.DeviceInfo

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.DeviceInfo

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the DeviceInfo queries.

func ByClientName

func ByClientName(opts ...sql.OrderTermOption) OrderOption

ByClientName orders the results by the client_name field.

func ByClientSourceCodeAddress

func ByClientSourceCodeAddress(opts ...sql.OrderTermOption) OrderOption

ByClientSourceCodeAddress orders the results by the client_source_code_address field.

func ByClientVersion

func ByClientVersion(opts ...sql.OrderTermOption) OrderOption

ByClientVersion orders the results by the client_version field.

func ByCreatedAt

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByDeviceName added in v0.2.3

func ByDeviceName(opts ...sql.OrderTermOption) OrderOption

ByDeviceName orders the results by the device_name field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func BySystemType added in v0.2.3

func BySystemType(opts ...sql.OrderTermOption) OrderOption

BySystemType orders the results by the system_type field.

func BySystemVersion

func BySystemVersion(opts ...sql.OrderTermOption) OrderOption

BySystemVersion orders the results by the system_version field.

func ByUpdatedAt

func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption

ByUpdatedAt orders the results by the updated_at field.

func ByUser added in v0.2.3

func ByUser(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByUser orders the results by user terms.

func ByUserCount added in v0.2.3

func ByUserCount(opts ...sql.OrderTermOption) OrderOption

ByUserCount orders the results by user count.

func ByUserDevice added in v0.2.3

func ByUserDevice(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByUserDevice orders the results by user_device terms.

func ByUserDeviceCount added in v0.2.3

func ByUserDeviceCount(opts ...sql.OrderTermOption) OrderOption

ByUserDeviceCount orders the results by user_device count.

func ByUserSession

func ByUserSession(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByUserSession orders the results by user_session terms.

func ByUserSessionCount

func ByUserSessionCount(opts ...sql.OrderTermOption) OrderOption

ByUserSessionCount orders the results by user_session count.

type SystemType added in v0.2.3

type SystemType string

SystemType defines the type for the "system_type" enum field.

const (
	SystemTypeIos     SystemType = "ios"
	SystemTypeAndroid SystemType = "android"
	SystemTypeWeb     SystemType = "web"
	SystemTypeWindows SystemType = "windows"
	SystemTypeMacos   SystemType = "macos"
	SystemTypeLinux   SystemType = "linux"
	SystemTypeUnknown SystemType = "unknown"
)

SystemType values.

func (SystemType) String added in v0.2.3

func (st SystemType) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL