You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

messenger.go 312B

12345678910
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package migration
  4. // Messenger is a formatting function similar to i18n.TrString
  5. type Messenger func(key string, args ...any)
  6. // NilMessenger represents an empty formatting function
  7. func NilMessenger(string, ...any) {}