mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-10 09:32:13 +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"
|
|
}
|