Skip to content

Commit

Permalink
ci: refactor name to snake-case
Browse files Browse the repository at this point in the history
  • Loading branch information
Sma1lboy committed Aug 24, 2024
1 parent 75d9492 commit 3340efd
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/commandHandler.ts → src/command-handler.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Message, Room, Contact } from 'wechaty';
import { InternJobProvider } from './providers/InternJobProvider';
import { NGJobProvider } from './providers/NGJobProvider';
import { FileSystemService } from './FileSystemService';
import { InternJobProvider } from './providers/internship-job-provider';
import { NGJobProvider } from './providers/new-graduate-job-provider';
import { FileSystemService } from './file-system-service';

interface Command {
name: string;
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import { WechatyBuilder, Contact, Room, Message } from 'wechaty';
import { ContactImpl } from 'wechaty/impls';
import qrcodeTerminal from 'qrcode-terminal';
import { jobWxBotConfig } from '../package.json';
import { InternJobProvider } from './providers/InternJobProvider';
import { NGJobProvider } from './providers/NGJobProvider';
import { InternJobProvider } from './providers/internship-job-provider';
import { NGJobProvider } from './providers/new-graduate-job-provider';
import path from 'path';
import os from 'os';
import * as fs from 'fs';
import { TopicsLocal } from './types';
import { CommandHandler } from './commandHandler';
import { CommandHandler } from './command-handler';

const wechaty = WechatyBuilder.build();
let targetRooms: Room[] = [];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Config } from '../config';
import { Job } from '../types';
import { BaseJobProvider } from './BaseJobProvider';
import { BaseJobProvider } from './job-provider-base';

/**
* @class InternJobProvider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import axios from 'axios';
import { Config } from '../config';
import { Job, JobProvider } from '../types';
import { FileSystemService } from '../FileSystemService';
import { FileSystemService } from '../file-system-service';

export abstract class BaseJobProvider implements JobProvider {
abstract readonly jobType: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Config } from '../config';
import { Job } from '../types';
import { BaseJobProvider } from './BaseJobProvider';
import { BaseJobProvider } from './job-provider-base';

/**
* @class NGJobProvider
Expand Down

0 comments on commit 3340efd

Please sign in to comment.