CI / test (pull_request) Successful in 6m29s
The picker accepts one MP4 or WebM, the thread lightbox zooms photos, and Discord gets the video as a file on a follow-up message so photo embeds still render.
12 lines
231 B
Go
12 lines
231 B
Go
package events
|
|
|
|
import "context"
|
|
|
|
// Nop is a Publisher used when nothing is subscribed.
|
|
type Nop struct{}
|
|
|
|
// Publish discards ev after releasing any held upload.
|
|
func (Nop) Publish(_ context.Context, ev any) {
|
|
CallRelease(ev)
|
|
}
|