1.13.1原版

This commit is contained in:
2026-07-19 01:16:28 +08:00
commit c6ba83f5d7
133 changed files with 19136 additions and 0 deletions
@@ -0,0 +1,14 @@
package run.halo.moments.event;
import lombok.Getter;
import org.springframework.context.ApplicationEvent;
@Getter
public class MomentUpdatedEvent extends ApplicationEvent {
private final String momentName;
public MomentUpdatedEvent(Object source, String momentName) {
super(source);
this.momentName = momentName;
}
}