mirror of
https://github.com/langgenius/dify.git
synced 2026-04-26 02:06:35 +08:00
14 lines
188 B
TypeScript
14 lines
188 B
TypeScript
import Container from './Container'
|
|
|
|
const PluginList = async () => {
|
|
return (
|
|
<Container />
|
|
)
|
|
}
|
|
|
|
export const metadata = {
|
|
title: 'Plugins - Dify',
|
|
}
|
|
|
|
export default PluginList
|