tack2us/app/controllers/pastes_controller.rb

20 lines
165 B
Ruby
Raw Normal View History

class PastesController < ApplicationController
def index
end
def create
end
def new
end
def update
end
def edit
end
def destroy
end
end