When you have an async function, but your usecase doesn't need to wait for the promise to finish, instead of using await, you can use void to effectively ignores the promise.
void suggestTagsSampling(agent, createdEntry.id)
深耕网站建设、视觉设计与SEO优化的一线实战洞察。
When you have an async function, but your usecase doesn't need to wait for the promise to finish, instead of using await, you can use void to effectively ignores the promise.
void suggestTagsSampling(agent, createdEntry.id)