mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
9 lines
123 B
PHP
9 lines
123 B
PHP
<?php
|
|
|
|
namespace Gazelle\Torrent;
|
|
|
|
enum ReaperNotify: string {
|
|
case INITIAL = 'initial';
|
|
case FINAL = 'final';
|
|
}
|