mirror of
https://github.com/versia-pub/activitypub.git
synced 2025-12-06 14:48:19 +01:00
fix: format
This commit is contained in:
parent
946804968e
commit
470f1f7eae
|
|
@ -81,7 +81,9 @@
|
||||||
{
|
{
|
||||||
name = "lysand-ap-layer";
|
name = "lysand-ap-layer";
|
||||||
contents = [
|
contents = [
|
||||||
config.packages.lysand-ap-layer config.packages.ls-ap-migration pkgs.bash
|
config.packages.lysand-ap-layer
|
||||||
|
config.packages.ls-ap-migration
|
||||||
|
pkgs.bash
|
||||||
];
|
];
|
||||||
config = {
|
config = {
|
||||||
Cmd = [
|
Cmd = [
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
use url::Url;
|
use url::Url;
|
||||||
|
|
||||||
pub enum LysandType {
|
pub enum LysandType {
|
||||||
User
|
User,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct User {
|
pub struct User {
|
||||||
|
|
@ -9,5 +9,5 @@ pub struct User {
|
||||||
id: String,
|
id: String,
|
||||||
uri: Url,
|
uri: Url,
|
||||||
created_at: String,
|
created_at: String,
|
||||||
display_name: Option<String>
|
display_name: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
@ -42,9 +42,9 @@ mod database;
|
||||||
mod entities;
|
mod entities;
|
||||||
mod error;
|
mod error;
|
||||||
mod http;
|
mod http;
|
||||||
|
mod lysand;
|
||||||
mod objects;
|
mod objects;
|
||||||
mod utils;
|
mod utils;
|
||||||
mod lysand;
|
|
||||||
|
|
||||||
#[derive(Debug, Serialize, Deserialize)]
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
struct Response {
|
struct Response {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue