mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 05:57:03 +05:30
feat(core): introduce the AppPlugin
interface
This commit is contained in:
parent
0bf60812e0
commit
0390336d50
1 changed files with 14 additions and 0 deletions
|
@ -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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue