Files
sigma-rules/detection_rules/__init__.py
T
Ross Wolf d15da0ada1 Add versioned schemas with a downgrade path (#84)
* Add versioned schemas with a downgrade path
* Remove and move unused variables
* Add missing license
* Skip NotField for output_index
* Add strip_additional_properties for kibana import
* Remove stray comment
* Apply suggestions from code review

Co-authored-by: Justin Ibarra <brokensound77@users.noreply.github.com>
2020-07-23 11:39:35 -06:00

25 lines
573 B
Python

# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License;
# you may not use this file except in compliance with the Elastic License.
"""Detection rules."""
from . import eswrap
from . import main
from . import mappings
from . import misc
from . import rule_formatter
from . import rule_loader
from . import schemas
from . import utils
__all__ = (
'eswrap',
'mappings',
"main",
'misc',
'rule_formatter',
'rule_loader',
'schemas',
'utils',
)