remove unused

This commit is contained in:
SrGooglo 2024-04-25 20:25:10 +00:00
parent a89ac130c7
commit 59b132852d

View File

@ -1,18 +0,0 @@
import request from "../../request"
export default class WidgetModel {
static browse = async ({ limit, offset, keywords } = {}) => {
const response = await request({
instance: globalThis.__comty_shared_state.instances["marketplace"],
method: "GET",
url: "/widgets",
params: {
limit,
offset,
keywords: JSON.stringify(keywords),
},
})
return response.data
}
}