mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07:00
12 lines
180 B
TypeScript
12 lines
180 B
TypeScript
import Stream from './stream';
|
|
|
|
/**
|
|
* Drive stream connection
|
|
*/
|
|
export default class Connection extends Stream {
|
|
constructor(me) {
|
|
super('drive', {
|
|
i: me.token
|
|
});
|
|
}
|
|
}
|