module Pagy::Console

def self.included(main)

Include Backend, Frontend and set the default URL
def self.included(main)
  main.include(Backend)
  main.include(Frontend)
  DEFAULT[:url] = 'http://www.example.com/subdir'
end