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