mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
12 lines
176 B
PHP
12 lines
176 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum SelfHostedServiceType: string
|
|
{
|
|
case Mempool = 'mempool';
|
|
case LNbits = 'lnbits';
|
|
case Alby = 'alby';
|
|
case Other = 'other';
|
|
}
|