class V1::SubjectsController < ApplicationController
  
  include ::Paginator


  # GET /subjects
  # GET /subjects.json
  def index
    subjects = Subject.all
    render json: subjects
  end

end