62 lines
1.2 KiB
Python
62 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
from mytask.tga import GetFromTga
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class TGA_event(GetFromTga):
|
|
pass
|
|
|
|
|
|
def run_event_share(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_share()
|
|
|
|
def run_event_share_new(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_share_new()
|
|
|
|
|
|
def run_event_stage(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_stage()
|
|
|
|
|
|
def run_event_stage_new(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_stage_new()
|
|
|
|
|
|
def run_event_ad_video(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_ad_video()
|
|
|
|
|
|
def run_event_ad_video_new(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_ad_video_new()
|
|
|
|
|
|
def run_event_vistis_page(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_vistis_page()
|
|
|
|
def run_event_ad_info(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_ad_info()
|
|
|
|
|
|
def run_event_items_produce(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_items_produce()
|
|
|
|
|
|
def run_event_items_consum(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_items_consum()
|
|
|
|
def run_event_share_map(kwargs):
|
|
mytga = TGA_event(**kwargs)
|
|
mytga.event_share_map()
|