KiloG

Results 4 issues of KiloG

It seems that lo can't do any chain opertaions like ``` type Poo struct { Id int Name string } poos := []Poo{ {1, "A"}, {2, "B"}, {3, "C"}, }...

I think it is a good idea to generate model with Json tag

``` var a string var done bool func setup() { a = "hello, world" done = true } func main() { go setup() for !done {} print(a) } ``` >...

希望曹大能分享下DDD的学习过程或者材料,一年前我也是初次涉足DDD这方面,很遗憾年初因为从Java转向Go而无暇继续研究。 希望在入门Go后能将当初学过的DDD知识应用到Go上面。分享一个Java的DDD项目模板,印象中是有Eric Evans参与的。 https://github.com/citerus/dddsample-core