mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
16 lines
289 B
Go
16 lines
289 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/mattermost/mattermost/tools/mmgotool/commands"
|
|
)
|
|
|
|
func main() {
|
|
if err := commands.Run(os.Args[1:]); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|