Rename command files
This commit is contained in:
parent
c1bc8ee478
commit
f59545d97a
|
@ -1,6 +1,6 @@
|
|||
|
||||
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'
|
||||
|
||||
export class BulkCommand extends AbstractCommand {
|
|
@ -1 +1 @@
|
|||
export * from './bulk'
|
||||
export * from './bulk-command'
|
||||
|
|
|
@ -1 +1 @@
|
|||
export * from './cli'
|
||||
export * from './cli-command'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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'
|
||||
|
||||
export class CustomPagesCommand extends AbstractCommand {
|
|
@ -1 +1 @@
|
|||
export * from './custom-pages'
|
||||
export * from './custom-pages-command'
|
||||
|
|
|
@ -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'
|
||||
|
||||
type FeedType = 'videos' | 'video-comments' | 'subscriptions'
|
|
@ -1 +1 @@
|
|||
export * from './feeds'
|
||||
export * from './feeds-command'
|
||||
|
|
|
@ -4,7 +4,7 @@ export * from './cli'
|
|||
|
||||
export * from './custom-pages'
|
||||
|
||||
export * from './feeds/feeds'
|
||||
export * from './feeds'
|
||||
|
||||
export * from './mock-servers/mock-instances-index'
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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'
|
||||
|
||||
export interface OverrideCommandOptions {
|
||||
|
|
Loading…
Reference in New Issue