my-crawler/src/index.ts

10 lines
174 B
TypeScript
Raw Normal View History

2025-02-19 18:36:25 +08:00
import { fetchData } from "./link";
function main() {
console.log("Hello, this is the main function!");
fetchData("AI写作工具")
2025-02-20 01:23:53 +08:00
// test()
2025-02-19 18:36:25 +08:00
}
main();