mirror of
https://github.com/falcosecurity/falco.git
synced 2026-04-04 19:15:26 +00:00
- Move output_format.h from userspace/falco/ to userspace/engine/ to fix reverse dependency (engine layer was including from app layer); update all include paths accordingly - Add SPDX-License-Identifier to output_format.h - Remove leftover m_first_event_in_category field from MarkdownFormatter (was set in begin_category() but never read) - Emit deprecation warning to stderr when --markdown is used Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Paolo Polidori <paolo.polidori@sysdig.com>
21 lines
674 B
C
21 lines
674 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
/*
|
|
Copyright (C) 2026 The Falco Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
enum class output_format { TEXT, MARKDOWN, JSON };
|