aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/juick/server/MockNotificationListener.java
blob: c3a929fd65cc4597c1d9deb68033844ebfc1d5c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.juick.server;

import com.juick.service.component.SystemEvent;
import org.springframework.context.ApplicationListener;

import javax.annotation.Nonnull;

public class MockNotificationListener implements ApplicationListener<SystemEvent> {
    @Override
    public void onApplicationEvent(@Nonnull SystemEvent event) {

    }
}