47 lines
891 B
Python
47 lines
891 B
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() |