이건 Python이 잘못했다다
This commit is contained in:
parent
2d2e546673
commit
ca946990e1
41 changed files with 3081 additions and 964 deletions
28
app/playground.ts
Normal file
28
app/playground.ts
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
//import { Discord } from "./lib/discord";
|
||||
|
||||
const YYMMDD = new Date().toISOString().slice(0, 10).replace(/-/g, "").toString();
|
||||
console.log(YYMMDD);
|
||||
|
||||
//Discord("20250509")
|
||||
/*async function run() {
|
||||
console.time("Post");
|
||||
await CreateImage.Post(YYMMDD);
|
||||
console.timeEnd("Post");
|
||||
|
||||
console.time("Story");
|
||||
await CreateImage.Story(YYMMDD);
|
||||
console.timeEnd("Story");
|
||||
}
|
||||
|
||||
run();
|
||||
*/
|
||||
|
||||
//import { CreateImage } from "./lib/image";
|
||||
|
||||
//CreateImage.PostSchedule()
|
||||
|
||||
const tomorrow = new Date();
|
||||
tomorrow.setDate(tomorrow.getDate() + 1);
|
||||
|
||||
// 내일이 1일이면
|
||||
console.log(tomorrow.getDate());
|
||||
Loading…
Add table
Add a link
Reference in a new issue