Files
sigma-rules/kibana/__init__.py
T

16 lines
443 B
Python
Raw Normal View History

2020-06-29 23:05:43 -06:00
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
2021-03-03 22:12:11 -09:00
# or more contributor license agreements. Licensed under the Elastic License
# 2.0; you may not use this file except in compliance with the Elastic License
# 2.0.
2020-06-29 23:05:43 -06:00
"""Wrapper around Kibana APIs for the Security Application."""
2020-07-20 17:58:28 -04:00
from .connector import Kibana
from .resources import RuleResource, Signal
__all__ = (
"Kibana",
"RuleResource",
"Signal"
)