// Copyright 2023 schukai GmbH // SPDX-License-Identifier: AGPL-3.0 package document type GetComponentsTemplatesInterface interface { GetComponentsTemplates() map[string]string } type Dummy struct { } func (d *Dummy) GetComponentsTemplates() map[string]string { return map[string]string{} }