mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
8 lines
152 B
Go
8 lines
152 B
Go
package app
|
|
|
|
type appConfigError struct{}
|
|
|
|
func (e *appConfigError) Error() string {
|
|
return "A fatal error occured while setting up the application"
|
|
}
|