mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
88f835192d
Result of running `perl -p -i -e 's#interface\{\}#any#g' **/*` and `make fmt`.
Basically the same [as golang did](2580d0e08d
).
10 lines
306 B
Go
10 lines
306 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package migration
|
|
|
|
// Messenger is a formatting function similar to i18n.Tr
|
|
type Messenger func(key string, args ...any)
|
|
|
|
// NilMessenger represents an empty formatting function
|
|
func NilMessenger(string, ...any) {}
|