/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/moduletest/progress.go
19 строк
419 B
Radek Simko
make copyrightfix
17 фев 2026, 16:56
17 фев 2026, 16:56
0fe906f
Код
Авторство
О чём код?
// Copyright IBM Corp. 2014, 2026 // SPDX-License-Identifier: BUSL-1.1 package moduletest // Progress represents the status of a test file as it executes. // // We will include the progress markers to provide feedback as each test file // executes. // //go:generate go tool golang.org/x/tools/cmd/stringer -type=Progress progress.go type Progress int const ( Starting Progress = iota Running TearDown Complete )