mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-23 19:18:14 +09:00
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
import Channel from "../channel.js";
|
|
|
|
export default class extends Channel {
|
|
public readonly chName = "drive";
|
|
public static shouldShare = true;
|
|
public static requireCredential = true;
|
|
|
|
public async init(params: any) {
|
|
// Subscribe drive stream
|
|
this.subscriber.on(`driveStream:${this.user!.id}`, (data) => {
|
|
this.send(data);
|
|
});
|
|
}
|
|
}
|