From df9ecbe1a3ceb0e13fd4d4dd0c18d1811e31bf75 Mon Sep 17 00:00:00 2001 From: Dmitry Pokidov Date: Mon, 25 Dec 2023 20:29:15 +1100 Subject: [PATCH] Added doc for the root package --- transformimgs.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 transformimgs.go diff --git a/transformimgs.go b/transformimgs.go new file mode 100644 index 0000000..79a14dd --- /dev/null +++ b/transformimgs.go @@ -0,0 +1,11 @@ +// Package transformimgs provides an easy way to add +// image transformations into your web applications. +// +// Package provides simple API that manipulating images +// and deliver them using next generation formats, including +// AVIF and JpegXL. +// +// You could use the package to plugin into the existing +// Go web application using img.Service.GetRouter method or +// deploy as a standalone web app using docker image. +package transformimgs