Skip to content
This repository has been archived by the owner on May 8, 2023. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 306 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 306 Bytes

WoT Hooking

Library for hooking into WoT function calls.

from mod_hooking.strategy import before
from shared_utils.account_helpers.BattleResultsCache import BattleResultsCache

@before(BattleResultsCache, "get")
def before_get(*args, **kwargs):
    print "About to fetch a battle result!"