Skip to content

Commit

Permalink
Merge branch 'main' into composite_stream
Browse files Browse the repository at this point in the history
  • Loading branch information
HollererJ authored Dec 2, 2024
2 parents 89cbb1c + 19a985d commit 7d51e8e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 5 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,11 @@ test: ## run all tests

.PHONY: all build test clean

SUBDIRS = pkg/configReader pkg/dbcrypt pkg/errorResponses pkg/jobQueue pkg/notifications pkg/openSearch/esextension\
pkg/openSearch/openSearchClient pkg/openSearch/openSearchQuery pkg/query/ pkg/query/filter pkg/query/paging\
pkg/query/sorting pkg/retryableRequest pkg/secretfiles pkg/slices pkg/testFolder pkg/postgres/query
.PHONY: generate_docs $(SUBDIRS)
generate_docs: check_tools $(SUBDIRS)
$(SUBDIRS):
@cd $@; gomarkdoc -e --output README.md .
@echo "Generated documentation in $@"
.PHONY: generate_docs
generate_docs: check_tools
gomarkdoc -e --output '{{.Dir}}/README.md' \
--exclude-dirs .,./pkg/configReader/helper,./pkg/dbcrypt/config,./pkg/openSearch/openSearchClient/config \
./...

check_tools:
@command -v gomarkdoc >/dev/null || $(INSTALL_GOMARKDOC)
4 changes: 4 additions & 0 deletions pkg/openSearch/openSearchClient/count.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2024 Greenbone AG
//
// SPDX-License-Identifier: AGPL-3.0-or-later

package openSearchClient

import (
Expand Down

0 comments on commit 7d51e8e

Please sign in to comment.