Yack Plugin Framework Models
IPlugin
The starting point for Yack plugins. All plugins must implement IPlugin interface.
Plugin modules will eventually export a single or multiple IPlugin implementations, such as below:
const plugins: IPlugin[] = [
new MyYackPlugin()
];
export default plugins;
Authentication
CLICK ME
console.log("hello world");