blob: f62af84de67606a6a9710fd093431b6d82f148e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package api
import (
l4g "github.com/alecthomas/log4go"
"github.com/mattermost/mattermost-server/utils"
)
// ONLY FOR APIs SCHEDULED TO BE DEPRECATED
func (api *API) InitDeprecated() {
l4g.Debug(utils.T("api.deprecated.init.debug"))
}
|