18 lines
435 B
Go
18 lines
435 B
Go
/*
|
|
DESCRIPTION:
|
|
A sample, part of the package that contains type, constants, and/or variables.
|
|
*/
|
|
package base // adjust this
|
|
|
|
type StatusCode string
|
|
type TypeCode string
|
|
|
|
const (
|
|
SCActive StatusCode = "active" // prefixed with SC that stands for StatusCode
|
|
SCInactive StatusCode = "inactive"
|
|
|
|
TCPrimary TypeCode = "prim" // prefixed with TC that stands for TypeCode
|
|
TCScondary TypeCode = "seco"
|
|
TCTertiary TypeCode = "tert"
|
|
)
|