-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.go
More file actions
38 lines (30 loc) · 1.11 KB
/
main.go
File metadata and controls
38 lines (30 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright © 2015,2016,2020,2026 Phil Pennock.
// All rights reserved, except as granted under license.
// Licensed per file LICENSE.txt
package main
//go:generate go run ./util/update_entities.go
//go:generate go run ./util/update_unicode.go
//go:generate ./util/update_static_vim
//go:generate go run ./util/update_x11_compose.go
import (
"os"
"github.com/philpennock/character/commands/root"
_ "github.com/philpennock/character/commands/aliases"
_ "github.com/philpennock/character/commands/browse"
_ "github.com/philpennock/character/commands/code"
_ "github.com/philpennock/character/commands/known"
_ "github.com/philpennock/character/commands/name"
_ "github.com/philpennock/character/commands/named"
_ "github.com/philpennock/character/commands/puny"
_ "github.com/philpennock/character/commands/region"
_ "github.com/philpennock/character/commands/transform"
_ "github.com/philpennock/character/commands/version"
_ "github.com/philpennock/character/commands/agent"
_ "github.com/philpennock/character/commands/deprecated"
)
func main() {
root.Start()
if root.GetErrorCount() > 0 {
os.Exit(1)
}
}