# File lib/picnic/cli.rb, line 41
    def initialize(app, options = {})
      @app = app
      
      @options = {}
      @options[:app_path]  ||= File.expand_path(File.dirname(File.expand_path(__FILE__))+"/../lib/#{app}.rb")
      @options[:pid_file]  ||= "/etc/#{app}/#{app}.pid"
      @options[:conf_file] ||= nil
      @options[:verbose]   ||= false
      
      @options = options
    end