mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 08:36:25 +00:00
15 lines
324 B
TypeScript
15 lines
324 B
TypeScript
import { createCLI } from "@bunli/core"
|
|
import { search } from "./commands/search.js"
|
|
import { detail } from "./commands/detail.js"
|
|
|
|
const cli = await createCLI({
|
|
name: "jobindex-cli",
|
|
version: "0.1.0",
|
|
description: "CLI for searching jobs on Jobindex.dk",
|
|
})
|
|
|
|
cli.command(search)
|
|
cli.command(detail)
|
|
|
|
await cli.run()
|