<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Member extends CI_Controller {

	function __Construct()
    {
        parent ::__construct();
		$this->load->model('Barang');
		$this->load->model('Kategori');
    }
	
	public function index()
	{
	}
}