mirror of
https://github.com/bdrtr/ServerFinder.git
synced 2025-11-08 18:52:47 +00:00
21 lines
145 B
Bash
Executable File
21 lines
145 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
source finder.sh
|
|
source starter.sh
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
result=$(find_server_files)
|
|
starter_main $result
|
|
|
|
|
|
}
|
|
|
|
|
|
main
|
|
|
|
|
|
|