Annotations
with UserRepository //automatically imports from the first file that matches UserRepository\.hd (case insensitive)
#route("/")
func handleMain()
put 200
end
#service
#constructor(true)
class UserService
#injected(UserRepository)
let userRepository
func getById(id)
put userRepository.findById(id).orElse(null)
end
endLast updated