removing server timeouts as some process might take time + improving default commands' timeouts + godoc for app and main packages

This commit is contained in:
Julien Neuhart
2018-03-30 11:09:23 +02:00
parent 89136d51cf
commit 91f5240cfd
3 changed files with 18 additions and 15 deletions

View File

@@ -1,8 +1,7 @@
/*
Package main handles the application startup and shutdown.
Gotenberg is a stateless API for generating PDF from many sources
(".html", ".doc", ".docx").
Gotenberg is a stateless API for converting HTML files and Office document to PDF.
For more information, go to https://github.com/gulien/gotenberg.
*/
@@ -23,7 +22,7 @@ import (
// version will be set on build time.
var version = "master"
// main initializes the application and handles
// main initializes the application, starts it, and handles
// graceful shutdown.
func main() {
a, err := app.NewApp(version)