feat: load billing adapters #125

Merged
realaravinth merged 63 commits from load-billing-adapter into master 2025-01-11 19:41:14 +05:30
Showing only changes of commit 53da156897 - Show all commits

View file

@ -46,6 +46,13 @@ pub fn init_cqrs(
}
run_loop() {
for i in "${@:2}"
do
run $1 $i
done
}
if [ -z $1 ]
then
@ -54,6 +61,6 @@ elif [ -z $2 ]
then
help
else
run $1 $2 $3 $4 | wl-copy
run $1 $2 $3 $4
run_loop "$@"
run_loop "$@" | wl-copy
fi