feat(core): introduce the AppPlugin interface

This commit is contained in:
Harsh Shandilya 2022-11-13 20:01:46 +05:30
parent 0bf60812e0
commit 0390336d50
No known key found for this signature in database

View File

@ -0,0 +1,14 @@
/*
* Copyright © 2022 Harsh Shandilya.
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
package dev.msfjarvis.claw.core.injection
import android.app.Application
/** Basic plugin-based architecture for doing things at [Application] initialization. */
interface AppPlugin {
fun apply(application: Application)
}