mirror of
https://github.com/cmur2/openvpn-status-web.git
synced 2025-08-07 22:33:57 +02:00
14 lines
260 B
Ruby
14 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'modern_stateless'
|
|
|
|
module OpenVPNStatusWeb
|
|
module Parser
|
|
class V2
|
|
def parse_status_log(text)
|
|
OpenVPNStatusWeb::Parser::ModernStateless.parse_status_log(text, ',')
|
|
end
|
|
end
|
|
end
|
|
end
|