Created
July 23, 2025 14:52
-
-
Save renanfranca/810ef56bfc0b62a2b02c7b3c4e4bb8fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package tech.jhipster.lite.cli.shared.progressstatus.domain; | |
| public interface ProgressStatus { | |
| void show(); | |
| void show(String message); | |
| void update(String message); | |
| void hide(); | |
| void success(String message); | |
| void failure(String message); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment