mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-17 20:55:29 +08:00
10 lines
227 B
Java
10 lines
227 B
Java
package vip.mate.team.service;
|
|
|
|
import vip.mate.team.model.TeamRunView;
|
|
|
|
/** Stable application boundary for team run lifecycle events. */
|
|
public interface TeamRunEventPublisher {
|
|
|
|
void publishCancelled(TeamRunView run);
|
|
}
|