Files
sigma-rules/kibana/__init__.py
T
Ross Wolf 16fb306254 Add command to upload to kibana (#58)
* Add upload command to kibana
* Restore skipped fields
* Change prefix to DR_
* Add note to manage_versions call
* Reorder requirements.txt to trigger build
2020-07-20 15:58:28 -06:00

15 lines
433 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.
"""Wrapper around Kibana APIs for the Security Application."""
from .connector import Kibana
from .resources import RuleResource, Signal
__all__ = (
"Kibana",
"RuleResource",
"Signal"
)