2024-07-16 19:43:35 +00:00
|
|
|
export class AdapterConfig {
|
|
|
|
// common
|
|
|
|
public nickname: string = "";
|
|
|
|
public protocol: string = "";
|
|
|
|
|
|
|
|
// masto/misskey
|
|
|
|
public server: string | null = null;
|
|
|
|
public apiKey: string | null = null;
|
|
|
|
|
|
|
|
// nostr
|
|
|
|
public privkey: string | null = null;
|
|
|
|
public relays: string[] | null = null;
|
2024-12-01 21:08:02 +00:00
|
|
|
|
|
|
|
// honk
|
|
|
|
public handle: string | null = null;
|
|
|
|
public password: string | null = null;
|
2024-07-16 19:43:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Settings {
|
|
|
|
public adapters: AdapterConfig[] = [];
|
|
|
|
|
|
|
|
static _instance: Settings = new Settings();
|
|
|
|
}
|