1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 21:05:54 +02:00
This commit is contained in:
syuilo
2026-04-12 21:38:39 +09:00
parent 7f46bd4928
commit f26ebef565
3 changed files with 21 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../engine.js';
export const pizza = defineObject({
id: 'pizza',
name: 'pizza',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});