summaryrefslogtreecommitdiff
path: root/ports/dsl/nano-bots/cartridges.rb
blob: 7c0f05b3d6af02d2437dfbdd68dfea40e593aa9a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require_relative '../../controllers/cartridges'

module NanoBot
  module Cartridges
    def self.all
      Controllers::Cartridges.all
    end

    def self.load(path)
      Controllers::Cartridges.load(path)
    end
  end
end