15 lines
512 B
Lua
15 lines
512 B
Lua
--- === hs.network.configuration ===
|
|
---
|
|
--- This sub-module provides access to the current location set configuration settings in the system's dynamic store.
|
|
|
|
local USERDATA_TAG = "hs.network.configuration"
|
|
local module = require("hs.libnetworkconfiguration")
|
|
|
|
-- private variables and methods -----------------------------------------
|
|
|
|
-- Public interface ------------------------------------------------------
|
|
|
|
-- Return Module Object --------------------------------------------------
|
|
|
|
return module
|