xref: /plugin/diagrams/Diagrams.php (revision 146e874b1a88e6d45cbffef54a860c0c8fcec462)
1<?php
2
3namespace dokuwiki\plugin\diagrams;
4
5/**
6 * Currently only used to hold constants
7 */
8class Diagrams {
9    const MODE_MEDIA = 1;
10    const MODE_EMBED = 2;
11}
12