
class ApiController < ApplicationController
    skip_before_action :verify_authenticity_token
    protect_from_forgery with: :null_session
    layout false
  
    def inbody
    end

    def docs
    end

end