#!/bin/sh

po_domain="alterator-@NAME@"
alterator_api_version=1

. alterator-sh-functions

on_message() {
  case "$in_action" in
    read)  ;; #insert your code for read action here
    write) ;; #insert your code for write action here
    list)  ;; #insert your code for list action here
  esac
}

message_loop
