github.com/demisto/mattermost-server@v4.9.0-rc3+incompatible/main.go (about)

     1  // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
     2  // See License.txt for license information.
     3  
     4  package main
     5  
     6  import (
     7  	"os"
     8  
     9  	"github.com/mattermost/mattermost-server/cmd"
    10  	_ "github.com/mattermost/mattermost-server/cmd/commands"
    11  
    12  	// Plugins
    13  	_ "github.com/mattermost/mattermost-server/model/gitlab"
    14  
    15  	// Enterprise Imports
    16  	_ "github.com/mattermost/mattermost-server/imports"
    17  
    18  	// Enterprise Deps
    19  	_ "github.com/dgryski/dgoogauth"
    20  	_ "github.com/go-ldap/ldap"
    21  	_ "github.com/hashicorp/memberlist"
    22  	_ "github.com/mattermost/rsc/qr"
    23  	_ "github.com/prometheus/client_golang/prometheus"
    24  	_ "github.com/prometheus/client_golang/prometheus/promhttp"
    25  	_ "github.com/tylerb/graceful"
    26  	_ "gopkg.in/olivere/elastic.v5"
    27  
    28  	// Temp imports for new dependencies
    29  	_ "github.com/gorilla/schema"
    30  )
    31  
    32  func main() {
    33  	if err := cmd.Run(os.Args[1:]); err != nil {
    34  		os.Exit(1)
    35  	}
    36  }