package com.fidelreactlibrary.adapters.abstraction;

public interface DataOutput<DataType> {
    void output(DataType data);
}
