mirror of
https://github.com/cmur2/openvpn-status-web.git
synced 2025-09-06 21:13:05 +02:00
10 lines
176 B
Ruby
10 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
module OpenVPNStatusWeb
|
|
class Status
|
|
attr_accessor :client_list
|
|
attr_accessor :routing_table
|
|
attr_accessor :global_stats
|
|
end
|
|
end
|