독립 control plane 구성을 위해 기존 Dart CLI/runtime을 runner 앱 경계로 옮기고, 후속 client/core/root 작업을 같은 마일스톤 task group에 연결한다.
20 lines
245 B
Dart
20 lines
245 B
Dart
enum Color {
|
|
black,
|
|
red,
|
|
green,
|
|
yellow,
|
|
blue,
|
|
magenta,
|
|
cyan,
|
|
lightGray,
|
|
darkGray,
|
|
redStrong,
|
|
greenStrong,
|
|
yellowStrong,
|
|
blueStrong,
|
|
magentaStrong,
|
|
cyanStrong,
|
|
white
|
|
}
|
|
|
|
enum Style { bold, underline, dim, reverse }
|