9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import initAppConfig from "../../constant/config"
|
|
import { AttachService } from "../../services"
|
|
|
|
await initAppConfig()
|
|
|
|
const service = new AttachService()
|
|
|
|
service.webSearch("北京今天天气").then(console.log).catch(console.error)
|