mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 20:26:39 +00:00
98263a7de6
* start fixing up tests * fix up tests + automate with drone * fiddle with linting * messing about with drone.yml * some more fiddling * hmmm * add cache * add vendor directory * verbose * ci updates * update some little things * update sig
17 lines
334 B
Go
17 lines
334 B
Go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
|
|
|
|
package language
|
|
|
|
// This file contains code common to the maketables.go and the package code.
|
|
|
|
// AliasType is the type of an alias in AliasMap.
|
|
type AliasType int8
|
|
|
|
const (
|
|
Deprecated AliasType = iota
|
|
Macro
|
|
Legacy
|
|
|
|
AliasTypeUnknown AliasType = -1
|
|
)
|