15 lines
368 B
C#
15 lines
368 B
C#
|
|
using BotSharp.Abstraction.Plugins;
|
||
|
|
using Microsoft.Extensions.Configuration;
|
||
|
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace BotSharp.Plugin.PaddleOCR;
|
||
|
|
|
||
|
|
public class PaddleSharpPlugin : IBotSharpPlugin
|
||
|
|
{
|
||
|
|
public void RegisterDI(IServiceCollection services, IConfiguration config)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|