Skip to content

Commit fc12dc4

Browse files
authored
feat: add parser class(#1699) (#1700)
1 parent 0f24b06 commit fc12dc4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

cve_bin_tool/parsers/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (C) 2022 Intel Corporation
2+
# SPDX-License-Identifier: GPL-3.0-or-later
3+
4+
__all__ = [
5+
"Parser",
6+
]
7+
8+
9+
class Parser:
10+
def run_checker(self, filename):
11+
pass
12+
13+
def find_vendor(self, product, version):
14+
pass

0 commit comments

Comments
 (0)