aboutsummaryrefslogtreecommitdiffstats
path: root/src/locusts.rb
blob: f4bcbd9b3d7efae3fcda14ad0442d4383da03cc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# typed: true
# frozen_string_literal: true

module Locusts
  class Locusts
    # Add locusts into your codebase.
    # Note that locusts are not included with this package, you must provide your own.
    #
    # @return [nil]
    def self.introduceLocusts
      nil
    end
  end
end