Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package com.learn.kotlin
  2.  
  3. import org.springframework.boot.autoconfigure.SpringBootApplication
  4. import org.springframework.boot.SpringApplication
  5.  
  6. @SpringBootApplication
  7. open class KotinSpringBootApplication
  8.  
  9. fun main(args: Array<String>) {
  10. SpringApplication.run(KotinSpringBootApplication::class.java, *args);
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement