package $safeprojectname$;

import System.ServiceProcess.*;

public class Program
{
    /**
     * The main entry point for the process
     */
    public static void main(String[] args)
    {
        ServiceBase[] ServicesToRun;

        // More than one user Service may run within the same process. To add
        // another service to this process, change the following line to
        // create a second service object. For example,
        //
        //   ServicesToRun = new ServiceBase[] {new Service1(), new MySecondUserService()};
        //
        ServicesToRun = new ServiceBase[] { new Service1() };
        ServiceBase.Run(ServicesToRun);
    }
}
