Skip to content

Diagrams added #346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions diagrams/msls-package.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
@startuml package-related-diagram
package lloc.Msls as Msls {
package ContentImport {
package LogWriters {
}
package Importers {
package PostMeta {
}
package PostThumbnail {
}
package Terms {
}
package PostFields {
}
package Attachments {
}
}
}
package Component {
package Input {
}
package Icon {
}
}
package Map {
}
package Query {
}
}
Msls --> Input
Msls <-[#red,plain,thickness=4]-> Query
Msls <-[#red,plain,thickness=4]-> Map
Msls <-[#red,plain,thickness=4]-> ContentImport
Msls <-[#red,plain,thickness=4]-> Icon
ContentImport <-[#red,plain,thickness=4]-> Importers
ContentImport <-[#red,plain,thickness=4]-> LogWriters
LogWriters --> Msls
Importers <-[#red,plain,thickness=4]-> PostFields
Importers --> Msls
Importers <-[#red,plain,thickness=4]-> Terms
Importers <-[#red,plain,thickness=4]-> PostThumbnail
Importers <-[#red,plain,thickness=4]-> PostMeta
Importers <-[#red,plain,thickness=4]-> Attachments
PostThumbnail --> ContentImport
Terms --> Msls
Input --> Component
Icon --> Component
@enduml
Loading
Loading