mirror of
https://codeberg.org/cage/tinmop/
synced 2025-03-01 09:47:46 +01:00
- [RPC] moved struct 'box'.
This commit is contained in:
parent
9b63978329
commit
3a0074811d
21
src/gui/server/public-api-structs.lisp
Normal file
21
src/gui/server/public-api-structs.lisp
Normal file
@ -0,0 +1,21 @@
|
||||
;; tinmop: an humble gemini and pleroma client
|
||||
;; Copyright (C) 2022 cage
|
||||
|
||||
;; This program is free software: you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU General Public License as published by
|
||||
;; the Free Software Foundation, either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU General Public License for more details.
|
||||
|
||||
;; You should have received a copy of the GNU General Public License
|
||||
;; along with this program.
|
||||
;; If not, see [[http://www.gnu.org/licenses/][http://www.gnu.org/licenses/]].
|
||||
|
||||
(in-package :json-rpc-communication)
|
||||
|
||||
(defstruct box
|
||||
(payload))
|
@ -17,6 +17,9 @@
|
||||
|
||||
(in-package :json-rpc-communication)
|
||||
|
||||
(defstruct box
|
||||
(payload))
|
||||
|
||||
(defun make-rpc-parameters (&rest params)
|
||||
(loop for (a b) on params by 'cddr collect (cons a b)))
|
||||
|
||||
|
@ -149,6 +149,7 @@
|
||||
(:module gui-server
|
||||
:pathname "gui/server"
|
||||
:components ((:file "main-window-server-side")
|
||||
(:file "public-api-structs")
|
||||
(:file "public-api-gemini-stream")
|
||||
(:file "public-api-gemini-certificates")
|
||||
(:file "public-api-gemini-tour-links")
|
||||
|
Loading…
x
Reference in New Issue
Block a user