Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
eschrewe committed Aug 19, 2024
1 parent add92d6 commit 4a3aa03
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,16 @@
public class PurisApplication {

public static void main(String[] args) {
SpringApplication.run(PurisApplication.class, args);
SpringApplication app = new SpringApplication(PurisApplication.class);
app.setBanner((environment, sourceClass, out) -> {
out.println(" ____ _ ____ _ _");
out.println(" | _ \\ _ _ _ __(_)___ | __ ) __ _ ___| | _____ _ __ __| |");
out.println(" | |_) | | | | '__| / __| | _ \\ / _` |/ __| |/ / _ \\ '_ \\ / _` |");
out.println(" | __/| |_| | | | \\__ \\ | |_) | (_| | (__| < __/ | | | (_| |");
out.println(" |_| \\__,_|_| |_|___/ |____/ \\__,_|\\___|_|\\_\\___|_| |_|\\__,_|");
out.println();
});
app.run(args);
}

@Bean
Expand Down

0 comments on commit 4a3aa03

Please sign in to comment.