mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 16:46:24 +00:00
15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
import { createCLI } from "@bunli/core"
|
|||
|
|
import { search } from "./commands/search.js"
|
||
|
|
import { detail } from "./commands/detail.js"
|
||
|
|
|
||
|
|
const cli = await createCLI({
|
||
|
|
name: "jobbank-cli",
|
||
|
|
version: "1.0.0",
|
||
|
|
description: "CLI for Akademikernes Jobbank (jobbank.dk) — job search for highly educated candidates",
|
||
|
|
})
|
||
|
|
|
||
|
|
cli.command(search)
|
||
|
|
cli.command(detail)
|
||
|
|
|
||
|
|
await cli.run()
|