mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-08-18 16:37:18 +02:00
11 lines
193 B
Go
11 lines
193 B
Go
package fetchup
|
|
|
|
type Event string
|
|
|
|
const (
|
|
EventDownload Event = "Download:"
|
|
EventProgress Event = "Progress:"
|
|
EventUnzip Event = "Unzip:"
|
|
EventDownloaded Event = "Downloaded:"
|
|
)
|