Skip to content

Commit

Permalink
Add IResourceWithServiceDiscovery interface to PythonProjectResource. (
Browse files Browse the repository at this point in the history
…#5025)

Co-authored-by: Mitch Denny <[email protected]>
  • Loading branch information
github-actions[bot] and mitchdenny authored Jul 23, 2024
1 parent 72c1a73 commit d304c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Python/PythonProjectResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Aspire.Hosting.Python;
/// <param name="executablePath">The path to the executable used to run the python project.</param>
/// <param name="projectDirectory">The path to the directory containing the python project.</param>
public class PythonProjectResource(string name, string executablePath, string projectDirectory)
: ExecutableResource(name, executablePath, projectDirectory)
: ExecutableResource(name, executablePath, projectDirectory), IResourceWithServiceDiscovery
{

}

0 comments on commit d304c5f

Please sign in to comment.