clean: use camel case for class file
This commit is contained in:
parent
7705a2b817
commit
fe6d5dfc93
@ -1,4 +1,4 @@
|
||||
import { Client } from "./client.js";
|
||||
import { Client } from "./Client.js";
|
||||
|
||||
class Account
|
||||
{
|
@ -1,12 +1,12 @@
|
||||
import { Account } from "./account.js";
|
||||
import { Account } from "./Account.js";
|
||||
import { MatchMaking } from "./matchmaking.js";
|
||||
import { Profiles } from "./profiles.js";
|
||||
import { Channels } from './chat/channels.js';
|
||||
import { Profiles } from "./Profiles.js";
|
||||
import { Channels } from './chat/Channels.js';
|
||||
import { MyProfile } from "./MyProfile.js";
|
||||
import { navigateTo } from "../index.js";
|
||||
import { Tourmanents } from "./tournament/tournaments.js";
|
||||
import {Notice} from "./chat/notice.js";
|
||||
import { Channel } from "./chat/channel.js";
|
||||
import { Tourmanents } from "./tournament/Tournaments.js";
|
||||
import {Notice} from "./chat/Notice.js";
|
||||
import { Channel } from "./chat/Channel.js";
|
||||
import LanguageManager from './LanguageManager.js';
|
||||
|
||||
function getCookie(name)
|
@ -1,5 +1,5 @@
|
||||
import { Client } from "./client.js";
|
||||
import { Profile } from "./profile.js";
|
||||
import { Client } from "./Client.js";
|
||||
import { Profile } from "./Profile.js";
|
||||
|
||||
class MyProfile extends Profile
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Client } from "./client.js";
|
||||
import { Client } from "./Client.js";
|
||||
|
||||
class Profile
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
import { Profile } from "./profile.js";
|
||||
import { Profile } from "./Profile.js";
|
||||
|
||||
class Profiles
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
import {Message} from "./message.js";
|
||||
import {Message} from "./Message.js";
|
||||
|
||||
class Channel {
|
||||
constructor(client, channel_id, members_id, messages, reload) {
|
@ -1,4 +1,4 @@
|
||||
import {Channel} from "./channel.js";
|
||||
import {Channel} from "./Channel.js";
|
||||
|
||||
class Channels {
|
||||
constructor(client) {
|
@ -4,7 +4,7 @@ import { GameConfig } from "./GameConfig.js";
|
||||
import { Player } from "./Player.js";
|
||||
import { Time } from "./Time.js";
|
||||
import { Wall } from "./Wall.js";
|
||||
import { Client } from "../client.js";
|
||||
import { Client } from "../Client.js";
|
||||
|
||||
class Game
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Player } from "./Player.js";
|
||||
import { Client } from "../client.js";
|
||||
import { Client } from "../Client.js";
|
||||
import { Game } from "./Game.js";
|
||||
import { Segment } from "./Segment.js";
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Client } from "./client.js";
|
||||
import { Client } from "./Client.js";
|
||||
|
||||
class MatchMaking
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Client } from "../client.js";
|
||||
import { Client } from "../Client.js";
|
||||
|
||||
class Tourmanent
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
import { Client } from "../client.js";
|
||||
import { Tourmanent } from "./tournament.js";
|
||||
import { Client } from "../Client.js";
|
||||
import { Tourmanent } from "./Tournament.js";
|
||||
|
||||
class Tourmanents
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
import { Client } from "./api/client.js";
|
||||
import { Client } from "./api/Client.js";
|
||||
|
||||
import Dashboard from "./views/Dashboard.js";
|
||||
import Search from "./views/Search.js";
|
||||
|
@ -1,6 +1,6 @@
|
||||
import AbstractView from "./abstracts/AbstractView.js";
|
||||
import { client, lang } from "../index.js";
|
||||
import {Message} from "../api/chat/message.js";
|
||||
import {Message} from "../api/chat/Message.js";
|
||||
|
||||
export default class extends AbstractView {
|
||||
constructor(params) {
|
||||
|
Loading…
Reference in New Issue
Block a user