#!/bin/bash

set -e

####
## Functions
####

function enable_mod() {
    # This function runs the initial configuration the module needs once it is enabled for the first time
    return
}


####
## Calls
####

enable_mod

exit 0
