fix config

This commit is contained in:
2025-11-07 22:30:55 +09:00
parent da06419e72
commit a4020c1f43
8 changed files with 120 additions and 61 deletions

View File

@@ -480,6 +480,8 @@ fn bot(c: &Context) {
loop {
c_bot(c);
c_bot_feed(c);
// 10秒待機してCPU使用率を抑制
std::thread::sleep(std::time::Duration::from_secs(10));
}
}
@@ -487,6 +489,7 @@ fn feed_watch(c: &Context) {
refresh(c);
loop {
c_feed_watch(c);
std::thread::sleep(std::time::Duration::from_secs(10));
}
}