* BAEL-359: Introduction to Spring Groovy Configuration * BAEL-359: Removed unused import * BAEL-359: Moved groovy files under src/main/groovy * BAEL-359: Upgraded Groovy version to 3.0.13
8 lines
107 B
Groovy
8 lines
107 B
Groovy
package com.baeldung.springgroovyconfig;
|
|
|
|
interface NotificationService {
|
|
|
|
String getMessage();
|
|
|
|
}
|