59 lines
1.1 KiB
Python
59 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
from mytask.tga import *
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def run_event_share(kwargs):
|
|
mytga = Share_data(**kwargs)
|
|
mytga.event_share()
|
|
|
|
def run_event_share_new(kwargs):
|
|
mytga = Share_data(**kwargs)
|
|
mytga.event_share_new()
|
|
|
|
|
|
def run_event_stage(kwargs):
|
|
mytga = Stage_data(**kwargs)
|
|
mytga.event_stage()
|
|
|
|
|
|
def run_event_stage_new(kwargs):
|
|
mytga = Stage_data(**kwargs)
|
|
mytga.event_stage_new()
|
|
|
|
|
|
def run_event_ad_video(kwargs):
|
|
mytga = AD_data(**kwargs)
|
|
mytga.event_ad_video()
|
|
|
|
|
|
def run_event_ad_video_new(kwargs):
|
|
mytga = AD_data(**kwargs)
|
|
mytga.event_ad_video_new()
|
|
|
|
|
|
def run_event_vistis_page(kwargs):
|
|
mytga = TAP_data(**kwargs)
|
|
mytga.event_vistis_page()
|
|
|
|
def run_event_ad_info(kwargs):
|
|
mytga = AD_data(**kwargs)
|
|
mytga.event_ad_info()
|
|
|
|
|
|
def run_event_items_produce(kwargs):
|
|
mytga = Item_data(**kwargs)
|
|
mytga.event_items_produce()
|
|
|
|
|
|
def run_event_items_consum(kwargs):
|
|
mytga = Item_data(**kwargs)
|
|
mytga.event_items_consum()
|
|
|
|
def run_event_share_map(kwargs):
|
|
mytga = Share_data(**kwargs)
|
|
mytga.event_share_map()
|