Current section

Files

Jump to
strong_migrations lib strong_migrations classifier.ex
Raw

lib/strong_migrations/classifier.ex

defmodule StrongMigrations.Classifier do
@moduledoc """
Identifies an interface of the Classifier
"""
alias StrongMigrations.Migration
@callback classify(Migration.t()) :: :ok | {:error, atom()}
end