Skip to content

Commit

Permalink
fix(plugins): Add marker interface for KeelServiceSdk (#1418)
Browse files Browse the repository at this point in the history
  • Loading branch information
luispollo committed Aug 8, 2020
1 parent 9260cb5 commit 80b7e2f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ package com.netflix.spinnaker.keel.api.plugins

import com.netflix.spinnaker.keel.api.actuation.TaskLauncher
import com.netflix.spinnaker.keel.api.persistence.KeelReadOnlyRepository
import com.netflix.spinnaker.kork.plugins.api.servicesdk.ServiceSdk

/**
* A simple SDK that can be consumed by external plugins to access core Keel functionality.
*/
interface KeelServiceSdk {
interface KeelServiceSdk : ServiceSdk {
val repository: KeelReadOnlyRepository
val taskLauncher: TaskLauncher
}

0 comments on commit 80b7e2f

Please sign in to comment.