mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-12 18:21:38 -05:00
14 lines
228 B
Ruby
14 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Gpx::TrackParser
|
|
attr_reader :import, :json, :user_id
|
|
|
|
def initialize(import, user_id)
|
|
@import = import
|
|
@json = import.raw_data
|
|
@user_id = user_id
|
|
end
|
|
|
|
def call
|
|
end
|
|
end
|