/**
 * Enum describing categories of actions which can occur, for logAction.
 * @author Benedikt Arnarsson
 */
enum ActionType {
  DB_ACCESS = 'DB_ACCESS',
  DB_RESULT = 'DB_RESULT',
}

export default ActionType;
