# frozen_string_literal: true module Trellodon module Schedulers class Base def post raise NotImplementedError end end end end