mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-11-15 20:08:55 +00:00
12 lines
198 B
Python
12 lines
198 B
Python
#
|
|
# Copyright (c) 2020 Bitdefender
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
"""Early initialization and main entry point."""
|
|
|
|
from pybddisasm.core import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|