Hossein Shafiei

Results 2 comments of Hossein Shafiei

wrong way ``` public function register() { $this->app->bind('Activity', function($app) { new Activity; }); } ``` ---------------------------------------------- right way 👍 ``` public function register() { $this->app->bind('Activity', function($app) { return new Activity;...

> I'm new to Go, but I'm having the same problem. > > `Windows 10, Go 1.19, AMD` > > My simple sample project structure and code looks like this:...