2021-06-17 07:02:24 +09:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-28 03:20:29 +09:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-17 07:02:24 +09:00
|
|
|
|
2021-11-17 00:25:33 +09:00
|
|
|
package migration
|
2021-06-17 07:02:24 +09:00
|
|
|
|
|
|
|
// 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{}) {}
|