-- Dagger --
Hi, I have 2 nested scopes, AppScope and UserScope
I also have file storage, some files are app scoped, some are user scoped
Its the same FilesHelper interface so I need to deduplicate it via @AppFilesHelper or @UserFilesHelper
I understand why is this, but yet, its very foot-gunny, is there a way I can default to userFilesHelper one instance when within a UserScope module, and only access the appFilesHelper explicitly via annotation or something?