my-crawler/src/index.ts

9 lines
160 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写作工具")
}
main();