mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-02-20 07:55:27 -05:00
Images generated using PlantUML had transparent backgrounds which made their text difficult to read on GitHub when using "Dark Mode". Forcing a background color of #F0F0F0 ensures they are all readable.
14 lines
209 B
Plaintext
14 lines
209 B
Plaintext
@startuml
|
|
skinparam BackgroundColor F0F0F0
|
|
|
|
abstract class BaseChannel
|
|
|
|
BaseChannel <|-- Channel
|
|
|
|
Channel ..> ATStream: Channel use ATStream
|
|
|
|
Channel <|-- DLCChannel
|
|
Channel <|-- ATParser
|
|
|
|
@enduml
|