#!/usr/local/bin/bash

# mario-new-container card-open zzzz -n

_targetModule=$1
_targetContainer=$2
_targetModulePath=business-modules

if [[ ! -d $_targetModulePath ]]; then
  mkdir $_targetModulePath
fi

if [[ $3 ]]; then
  _isNative=-n
fi

cd $_targetModulePath

mario-create-container $_targetModule $_targetContainer $_isNative
