<@UFT11FKSP> I saw this in KVision examples: ```cl...
# kvision
t
@Robert Jaros I saw this in KVision examples:
Copy code
class App : Application(), CoroutineScope by CoroutineScope(Dispatchers.Default)
Why App implements CoroutineScope? Is is just a shortcut to be able use
launch
inside class? It actually expose scope api outside the class. What about having the scope as a property, like this:
Copy code
val scope = CoroutineScope(Dispatchers.Default)