DesignPattern icon indicating copy to clipboard operation
DesignPattern copied to clipboard

Use GO language to achieve 23 design patterns

Results 1 DesignPattern issues
Sort by recently updated
recently updated
newest added

type DataAccess struct { db string } func (d *DataAccess) createFactory(db string) Ifactory { if d == nil { return nil } var f Ifactory if db == "sqlserver" {...