Skip to content

Commit 073d623

Browse files
committed
Initial release
1 parent b3c1e45 commit 073d623

File tree

3 files changed

+607
-56
lines changed

3 files changed

+607
-56
lines changed

__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from binaryninja import *
1+
from binaryninja import PluginCommand
2+
from .golang_gopclntab_parser import rename_functions
23

3-
def do_nothing(bv,function):
4-
show_message_box("Do Nothing", "Congratulations! You have successfully done nothing.\n\n" +
5-
"Pat yourself on the back.", MessageBoxButtonSet.OKButtonSet, MessageBoxIcon.ErrorIcon)
6-
7-
PluginCommand.register_for_address("Useless Plugin", "Basically does nothing", do_nothing)
4+
PluginCommand.register(
5+
"golang\\auto-rename functions (gopclntab)",
6+
"Automatically rename go functions based on information from gopclntab",
7+
rename_functions)

0 commit comments

Comments
 (0)