📄️ Pine
Learn how to set up and configure Pine.
📄️ Ctx
Ctx and its methods is probably what you will be interacting with the most on Pine. The structure of the Ctx is actually very simple:
📄️ Cron
Pine has a built in cron system that can be used to schedule tasks.
📄️ Client
Client is a wrapper around the http.Client. This implementation is no special and you can instead use the http.Client directly if you wish.
📄️ Cookie
In this section, we will try and go into detail of how cookies are handled in Pine.
📄️ Cache
Feature coming soon.
📄️ Logger
Pine has a custom logger but feel free to use whatever logger you would like. It supports both printing the console in color as well as writing to the log file.
📄️ WebSockets
Pine brings websocket support out of the box. I did not have time to implement a custom solution for websockets and instead had to use the package gorilla/websocket