16 lines
516 B
Go
16 lines
516 B
Go
package shared
|
|
|
|
const (
|
|
// Linstrom version
|
|
//
|
|
// TODO: Replace with "YYYY-MM-DD(.revision)" versioning
|
|
// where (.revision) is optional and only used for cases
|
|
// where multiple releases in a day are required
|
|
Version = "0.0.1 pre-alpha"
|
|
// Username for the server actor
|
|
ServerActorName = "server.actor"
|
|
// Username for the placeholder actor where the actual actor is unknown
|
|
// Examples include likes, boosts and followers / following
|
|
UnknownActorName = "unknown.actor"
|
|
FeedUsernameSuffix = "-feed"
|
|
)
|