mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 21:37:21 +00:00
9 lines
192 B
Bash
9 lines
192 B
Bash
#!/bin/bash
|
|
backend_dir=$(dirname $0)
|
|
if [ -d $backend_dir/common ]; then
|
|
source $backend_dir/common/libbackend.sh
|
|
else
|
|
source $backend_dir/../common/libbackend.sh
|
|
fi
|
|
|
|
startBackend $@
|