mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-03-01 23:29:23 +01:00
11 lines
203 B
Ruby
11 lines
203 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Provides helper methods to bulk-import some users from a CSV file
|
|
class Members::ImportService
|
|
class << self
|
|
def import(import)
|
|
puts import
|
|
end
|
|
end
|
|
end
|