From 28c453847a95b7542147848fabb26d60f11217c9 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Mon, 1 Jun 2026 12:55:53 +0200 Subject: [PATCH] docs: add package comments to public and template packages --- pkg/graphql.go | 1 + pkg/net/limits.go | 1 + templates/renderer.go | 1 + 3 files changed, 3 insertions(+) diff --git a/pkg/graphql.go b/pkg/graphql.go index c1dac1d..154bf97 100644 --- a/pkg/graphql.go +++ b/pkg/graphql.go @@ -1,3 +1,4 @@ +// Package graphql provides a GraphQL client for the AniList API. package graphql import ( diff --git a/pkg/net/limits.go b/pkg/net/limits.go index 5f23ad4..5e6ad10 100644 --- a/pkg/net/limits.go +++ b/pkg/net/limits.go @@ -1,3 +1,4 @@ +// Package netutil provides HTTP networking utilities including rate limiting and proxy support. package netutil // Common size limits used when reading upstream responses. diff --git a/templates/renderer.go b/templates/renderer.go index d19945e..4769976 100644 --- a/templates/renderer.go +++ b/templates/renderer.go @@ -1,3 +1,4 @@ +// Package templates provides HTML template rendering with custom functions. package templates import (