<?php
defined('BASEPATH') OR exit('No direct script access allowed');

require_once 'TorrentRW.php';

class TorrentParser extends CI_Controller {

	public $parser;

	function __construct($args) {
		$this->parser = new Torrent(FCPATH.'/files/torrents/'.$args[0]);
	}

}


