Add sample func

This commit is contained in:
2021-01-26 13:28:23 +07:00
parent 97d3934905
commit 981f074049
3 changed files with 11 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
plugins {
id("java-library")
id("io.spring.dependency-management")
kotlin("jvm")
kotlin("plugin.spring")

View File

@@ -0,0 +1,7 @@
package com.example.lib;
public final class MyUtils {
public static String helloWorld() {
return "Hello World";
}
}