Documentation ¶
Index ¶
- Variables
- func InsertBank(db string, bank Bank) (insertedID interface{})
- func InsertDiskon(db string, diskon Diskon) (insertedID interface{})
- func InsertKategori(db string, kategori Kategori) (insertedID interface{})
- func InsertKontak(db string, kontak Kontak) (insertedID interface{})
- func InsertLapangan(db string, lapangan Lapangan) (insertedID interface{})
- func InsertOneDoc(db string, collection string, doc interface{}) (insertedID interface{})
- func MongoConnect(dbname string) (db *mongo.Database)
- type Bank
- type Diskon
- type Kategori
- type Kontak
- type Lapangan
Constants ¶
This section is empty.
Variables ¶
View Source
var MongoString string = os.Getenv("MONGOSTRING")
Functions ¶
func InsertBank ¶
func InsertDiskon ¶
func InsertKategori ¶
func InsertKontak ¶
func InsertLapangan ¶
func InsertOneDoc ¶
func MongoConnect ¶
Types ¶
type Bank ¶
type Bank struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama_Bank string `bson:"nama_bank,omitempty" json:"nama_bank,omitempty"` Atas_Nama string `bson:"atas_nama,omitempty" json:"atas_nama,omitempty"` }
func GetDataBank ¶
type Diskon ¶
type Diskon struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Harga string `bson:"harga,omitempty" json:"harga,omitempty"` }
func GetDataDiskon ¶
type Kategori ¶
type Kategori struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama string `bson:"nama,omitempty" json:"nama,omitempty"` Turnamen string `bson:"turnamen,omitempty" json:"turnamen,omitempty"` }
func GetDataKategori ¶
type Kontak ¶
type Kontak struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama string `bson:"nama,omitempty" json:"nama,omitempty"` Phone_number string `bson:"phone_number,omitempty" json:"phone_number,omitempty"` }
func GetDataKontak ¶
Click to show internal directories.
Click to hide internal directories.