Skip to content
Snippets Groups Projects
Commit 987799e9 authored by syuilo's avatar syuilo
Browse files

Refactor

parent 19c846af
No related branches found
No related tags found
No related merge requests found
Showing
with 16 additions and 16 deletions
import MiOS from '../mios';
import MiOS from '../../mios';
import { version as current } from '../../config';
export default async function(mios: MiOS, force = false, silent = false) {
......
import Stream from './stream';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Channel stream connection
......
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Drive stream connection
......
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Global timeline stream connection
......
......@@ -2,7 +2,7 @@ import * as merge from 'object-assign-deep';
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Home stream connection
......
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Local timeline stream connection
......
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Messaging index stream connection
......
import Stream from './stream';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Messaging stream connection
......
import Stream from './stream';
import MiOS from '../../mios';
import MiOS from '../../../mios';
export class OthelloGameStream extends Stream {
constructor(os: MiOS, me, game) {
......
import StreamManager from './stream-manager';
import Stream from './stream';
import MiOS from '../../mios';
import MiOS from '../../../mios';
export class OthelloStream extends Stream {
constructor(os: MiOS, me) {
......
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Server stream connection
......
......@@ -2,7 +2,7 @@ import { EventEmitter } from 'eventemitter3';
import * as uuid from 'uuid';
import * as ReconnectingWebsocket from 'reconnecting-websocket';
import { wsUrl } from '../../../config';
import MiOS from '../../mios';
import MiOS from '../../../mios';
/**
* Misskey stream connection
......
import OS from '../../common/mios';
import OS from '../../mios';
import { apiUrl } from '../../config';
import CropWindow from '../views/components/crop-window.vue';
import ProgressDialog from '../views/components/progress-dialog.vue';
......
import OS from '../../common/mios';
import OS from '../../mios';
import { apiUrl } from '../../config';
import CropWindow from '../views/components/crop-window.vue';
import ProgressDialog from '../views/components/progress-dialog.vue';
......
......@@ -14,7 +14,7 @@ import ElementLocaleJa from 'element-ui/lib/locale/lang/ja';
import App from './app.vue';
import checkForUpdate from './common/scripts/check-for-update';
import MiOS, { API } from './common/mios';
import MiOS, { API } from './mios';
import { version, codename, lang } from './config';
let elementLocale;
......
File moved
import Vuex from 'vuex';
import MiOS from './common/mios';
import MiOS from './mios';
const defaultSettings = {
home: [],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment