github.com/mattermost/mattermost-server/v6@v6.7.2/einterfaces/license.go (about)

     1  // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
     2  // See LICENSE.txt for license information.
     3  
     4  package einterfaces
     5  
     6  import "github.com/mattermost/mattermost-server/v6/model"
     7  
     8  type LicenseInterface interface {
     9  	CanStartTrial() (bool, error)
    10  	GetPrevTrial() (*model.License, error)
    11  }