mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 16:46:24 +00:00
19 lines
501 B
TypeScript
19 lines
501 B
TypeScript
import { createCLI } from "@bunli/core"
|
|
import { search } from "./commands/search.js"
|
|
import { detail } from "./commands/detail.js"
|
|
import { occupations } from "./commands/occupations.js"
|
|
import { suggestions } from "./commands/suggestions.js"
|
|
|
|
const cli = await createCLI({
|
|
name: "jobnet-cli",
|
|
version: "0.1.0",
|
|
description: "CLI for the Jobnet.dk Danish government job portal API",
|
|
})
|
|
|
|
cli.command(search)
|
|
cli.command(detail)
|
|
cli.command(occupations)
|
|
cli.command(suggestions)
|
|
|
|
await cli.run()
|