Rename command files

This commit is contained in:
Chocobozzz 2021-07-06 10:22:37 +02:00
parent c1bc8ee478
commit f59545d97a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
10 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model' import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
import { AbstractCommand, OverrideCommandOptions } from '../shared' import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class BulkCommand extends AbstractCommand { export class BulkCommand extends AbstractCommand {

View File

@ -1 +1 @@
export * from './bulk' export * from './bulk-command'

View File

@ -1 +1 @@
export * from './cli' export * from './cli-command'

View File

@ -1,5 +1,5 @@
import { CustomPage } from '@shared/models' import { CustomPage } from '@shared/models'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
import { AbstractCommand, OverrideCommandOptions } from '../shared' import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class CustomPagesCommand extends AbstractCommand { export class CustomPagesCommand extends AbstractCommand {

View File

@ -1 +1 @@
export * from './custom-pages' export * from './custom-pages-command'

View File

@ -1,5 +1,5 @@
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
import { AbstractCommand, OverrideCommandOptions } from '../shared' import { AbstractCommand, OverrideCommandOptions } from '../shared'
type FeedType = 'videos' | 'video-comments' | 'subscriptions' type FeedType = 'videos' | 'video-comments' | 'subscriptions'

View File

@ -1 +1 @@
export * from './feeds' export * from './feeds-command'

View File

@ -4,7 +4,7 @@ export * from './cli'
export * from './custom-pages' export * from './custom-pages'
export * from './feeds/feeds' export * from './feeds'
export * from './mock-servers/mock-instances-index' export * from './mock-servers/mock-instances-index'

View File

@ -1,5 +1,5 @@
import { HttpStatusCode } from '@shared/core-utils' import { HttpStatusCode } from '@shared/core-utils'
import { makeGetRequest, makePostBodyRequest, makePutBodyRequest, unwrap, unwrapBody, unwrapText } from '../requests/requests' import { makeGetRequest, makePostBodyRequest, makePutBodyRequest, unwrapBody, unwrapText } from '../requests/requests'
import { ServerInfo } from '../server/servers' import { ServerInfo } from '../server/servers'
export interface OverrideCommandOptions { export interface OverrideCommandOptions {