/* 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" )