mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import { NSecSigner } from '@nostrify/nostrify';
|
|
import { Conf } from '@/config.ts';
|
|
|
|
/** Sign events as the Ditto server. */
|
|
export class AdminSigner extends NSecSigner {
|
|
constructor() {
|
|
super(Conf.seckey);
|
|
}
|
|
}
|