English
Groovy Code Example
About 38 wordsLess than 1 minute
2026-01-09
class PubLibiNwxp {
//Public method
static String action() {
return "success"
}
//Public method
String getToken() {
return "xxx"
}
//Entry method for debugging
static void main(String[] args) {
String ret = action();
log.info(ret)
}
}