/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/views/module_installation_logger.go
13 строк
342 B
Sarah French
refactor(init): Add `LogModuleUpgrade` and `LogModuleInitialization` methods to the `ModuleInstallationLogger` interface, refactor `init` command to use methods. (#38979)
06 авг 2026, 01:19
Не верифицирован
06 авг 2026, 01:19
afa5687
Код
Авторство
О чём код?
// Copyright IBM Corp. 2014, 2026 // SPDX-License-Identifier: BUSL-1.1 package views type ModuleInstallationLogger interface { // TODO: Refactor calling code so that these methods can format the messages internally LogModuleDownload(message string) LogModuleInstallation(message string) LogModuleUpgrade() LogModuleInitialization() }