2021-06-17 03:32:24 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-17 03:32:24 +05:30
|
|
|
|
2021-11-16 20:55:33 +05:30
|
|
|
package migration
|
2021-06-17 03:32:24 +05:30
|
|
|
|
|
|
|
// Messenger is a formatting function similar to i18n.Tr
|
|
|
|
type Messenger func(key string, args ...interface{})
|
|
|
|
|
|
|
|
// NilMessenger represents an empty formatting function
|
|
|
|
func NilMessenger(string, ...interface{}) {}
|