diff --git a/model.go b/model.go deleted file mode 100644 index 74e37f9d..00000000 --- a/model.go +++ /dev/null @@ -1,36 +0,0 @@ -package beego - -type BeeModel struct { - driver string -} - -func (this *BeeModel) Insert() { - -} - -func (this *BeeModel) MultipleInsert() { - -} - -func (this *BeeModel) Update() { - -} - -func (this *BeeModel) Query() { - -} - -//Deletes from table with clauses where and using. -func (this *BeeModel) Delete() { - -} - -//Start a transaction -func (this *BeeModel) Transaction() { - -} - -//commit transaction -func (this *BeeModel) Commit() { - -}