8 lines
96 B
Bash
8 lines
96 B
Bash
|
#!/usr/bin/env bash
|
||
|
# shellcheck disable=SC1091
|
||
|
. lib.sh
|
||
|
|
||
|
teardown_suite () {
|
||
|
delete_cluster
|
||
|
}
|