Skip to content

Commit f1746fe

Browse files
committed
Update branch to be even with staging
1 parent a8b95b3 commit f1746fe

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

features/statuspage.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import axios from "axios";
22
import { Client } from "discord.js";
3-
import { isDocker } from "../util";
3+
import { isDocker } from "../utils/util";
44

55
export default (client: Client): void => {
66

@@ -11,7 +11,6 @@ export default (client: Client): void => {
1111
await axios.get(
1212
`https://${process.env.UPTIME_KUMA_MONITOR_DOMAIN}/api/push/${process.env.UPTIME_KUMA_MONITOR_ID}?msg=OK&ping=${client.ws.ping}`
1313
);
14-
console.log("ping anyways")
1514
setTimeout(updateStatus, 1000 * 60);
1615
};
1716
updateStatus().catch((err) => console.log(err));

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import WOKCommands from "wokcommands";
44
import path from "path";
55
import chalk from "chalk";
66
import dotenv from "dotenv";
7-
import { isDocker } from "./util";
7+
import { isDocker } from "./utils/util";
88

99
// import custom modules
10-
import { checkForRoles, checkIfCollectionsExist } from "./rolesOps";
10+
import { checkForRoles, checkIfCollectionsExist } from "./utils/roleUtils";
1111
import { classModel } from "./models/classModel";
1212
import { staffModel } from "./models/staffModel";
1313
import { yearModel } from "./models/yearModel";

0 commit comments

Comments
 (0)