#!/usr/bin/env bash

if [[ $1 == "good_service" ]]; then
	exit 0
else
	exit 1
fi
