mirror of
https://github.com/ntop/ntopng.git
synced 2026-08-03 20:25:09 +00:00
15 lines
329 B
Lua
15 lines
329 B
Lua
--
|
|
-- (C) 2013-23 - ntop.org
|
|
--
|
|
|
|
--
|
|
-- This script fetches the latest blog entries that
|
|
-- will be shown in the web GUI on the top right corner
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
local blog_utils = require("blog_utils")
|
|
|
|
blog_utils.fetchLatestPosts()
|