This commit is contained in:
2025-07-06 22:11:59 +09:00
parent 05194ad7b8
commit 22ec582e0a
11 changed files with 200 additions and 9 deletions
+2 -2
View File
@@ -4,8 +4,6 @@ import type * as types from "types/types";
import config from "../config.js";
export default async function timeNotice() {
console.log("----------------");
// 停止時間
// 時刻取得
const start = config.time.stopTimes.start;
@@ -24,6 +22,7 @@ export default async function timeNotice() {
}
if (inRange) {
console.log("----------------");
console.log("時報休止期間のため投稿されませんでした");
return;
} else {
@@ -41,6 +40,7 @@ export default async function timeNotice() {
const ueuseData: types.ueuseCreateApi = await resUeuse.json();
console.log("----------------");
console.log(`時報投稿:${JSON.stringify(ueuseData)}`);
}
}