mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-08 07:10:56 +03:00
improve godoc
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
// Package cmd provides Command Line Interface support
|
||||
package cmd
|
||||
|
||||
import (
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
// The package provides a request logger to log the HTTP requests for REST API too.
|
||||
// The request logger uses chi.middleware.RequestLogger,
|
||||
// chi.middleware.LogFormatter and chi.middleware.LogEntry to build a structured
|
||||
// logger using zerlog
|
||||
// logger using zerolog
|
||||
package logger
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// Package metrics provides Prometheus metrics support
|
||||
package metrics
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// Package service allows to start and stop the SFTPGo service
|
||||
package service
|
||||
|
||||
import (
|
||||
@@ -83,7 +84,7 @@ func (s *Service) Wait() {
|
||||
<-s.Shutdown
|
||||
}
|
||||
|
||||
// Stop terminates the service and unblocks the Wait method
|
||||
// Stop terminates the service unblocking the Wait method
|
||||
func (s *Service) Stop() {
|
||||
close(s.Shutdown)
|
||||
logger.Debug(logSender, "", "Service stopped")
|
||||
|
||||
Reference in New Issue
Block a user