2025-06-04 05:02:57 +08:00

14 lines
471 B
Plaintext

autoImport('ServiceSocialCmdAutoProxy')
ServiceSocialCmdProxy = class('ServiceSocialCmdProxy', ServiceSocialCmdAutoProxy)
ServiceSocialCmdProxy.Instance = nil
ServiceSocialCmdProxy.NAME = 'ServiceSocialCmdProxy'
function ServiceSocialCmdProxy:ctor(proxyName)
if ServiceSocialCmdProxy.Instance == nil then
self.proxyName = proxyName or ServiceSocialCmdProxy.NAME
ServiceProxy.ctor(self, self.proxyName)
self:Init()
ServiceSocialCmdProxy.Instance = self
end
end