yjp 1 年間 前
コミット
3970423140
1 ファイル変更2 行追加2 行削除
  1. 2 2
      framework/binding/binder.go

+ 2 - 2
framework/binding/binder.go

@@ -17,6 +17,6 @@ func NewBinder(router api.Router, i *infrastructure.Infrastructure) *Binder {
 	}
 }
 
-func (binder *Binder) GetInfrastructure() infrastructure.Infrastructure {
-	return *binder.i
+func (binder *Binder) GetInfrastructure() *infrastructure.Infrastructure {
+	return binder.i
 }