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

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

import javax.annotation.Nonnull;

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

    }
}