package controllers import ( "go.uber.org/fx" ) var Module = fx.Module("controllers", fx.Provide( NewServiceController, NewAuthController, ), )