Created
July 30, 2019 23:12
-
-
Save omeuerodrigofreitas/ee2f82b3a0732e68c8e2b104a19395a8 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 br.com.rodrigofreitas.meuapp.service; | |
import javax.enterprise.context.ApplicationScoped; | |
@ApplicationScoped | |
public class HelloWordService { | |
public String getHelloWithName(String name) { | |
return "Seja bem-vindo ao quarkus, sr: " + name; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment