17 lines
176 B
Bash
17 lines
176 B
Bash
#!/usr/bin/env bash
|
|
|
|
post_to_api() {
|
|
return 0
|
|
}
|
|
|
|
post_progress_to_api() {
|
|
return 0
|
|
}
|
|
|
|
post_update_to_api() {
|
|
return 0
|
|
}
|
|
|
|
diagnostics_check() {
|
|
export DIAGNOSTICS="no"
|
|
} |