mirror of
https://github.com/discourse/discourse.git
synced 2025-03-02 21:53:10 +08:00
13 lines
250 B
Plaintext
13 lines
250 B
Plaintext
import { withPluginApi } from "discourse/lib/plugin-api";
|
|
|
|
function initialize<%= classified_name %>(api) {
|
|
}
|
|
|
|
export default {
|
|
name: "<%= dasherized_name %>",
|
|
|
|
initialize() {
|
|
withPluginApi("0.8.24", initialize<%= classified_name %>);
|
|
}
|
|
};
|