This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/usr/bin/env zsh
|
|
|
|
data_file="$BAUKE_DIR/data/drg-data.json"
|
|
|
|
deno run \
|
|
--allow-read="$data_file" \
|
|
--allow-write="$data_file" \
|
|
"$BAUKE_DIR/scripts/drg-data-entry.ts" \
|
|
"$@"
|