dart_desk_generator 0.1.0
dart_desk_generator: ^0.1.0 copied to clipboard
Code generator for the Dart Desk CMS framework. Generates CMS configuration from annotations.
// This package is a code generator used with build_runner.
//
// 1. Add to pubspec.yaml dev_dependencies:
// dart_desk_generator: ^0.1.0
// build_runner: ^2.13.1
//
// 2. Annotate your models with dart_desk_annotation:
// @CmsConfig(title: 'Blog Post', description: 'A blog post document type')
// class BlogPost { ... }
//
// 3. Run: dart run build_runner build
//
// See the dart_desk_annotation package for available annotations.
void main() {}