12 lines
188 B
TypeScript
12 lines
188 B
TypeScript
import path from "node:path"
|
|
|
|
import { upload } from "./lokalise"
|
|
|
|
const filepath = path.resolve(__dirname, "./extracted.json")
|
|
|
|
async function main() {
|
|
await upload(filepath)
|
|
}
|
|
|
|
main()
|