hdkv
/
wind8_fetcher
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
wind8_fetcher/api/fetch_request/exported.go

19 lines
368 B
Go

package fetchrequest
import (
// local
"lab.pztrn.name/fat0troll/wind8_fetcher/lib/appcontext"
)
var (
c *appcontext.Context
)
// Initialize is an initialization function for call request handler
func Initialize(ac *appcontext.Context) {
c = ac
c.Log.Info("Initializing action for /fetch route...")
c.HTTPServerMux.HandleFunc("/fetch", HandleFetchRequest)
}