Example #1
0
            public static WingsDeployment Create(Configuration config)
            {
                WingsDeployment o = new WingsDeployment();

                o.config = config;
                return(o);
            }
Example #2
0
            public void Init(
                AirPush.Configuration air_push_cfg,
                WingsDeployment.Configuration wings_cfg
                )
            {
                // Air push setup
                air_push = AirPush.Create(air_push_cfg);

                // Wings deplyment setup
                wings_deployment = WingsDeployment.Create(wings_cfg);
            }