16 lines
257 B
Perl
16 lines
257 B
Perl
package WebGUI::Help::ProductManager;
|
|
use strict;
|
|
|
|
our $HELP = {
|
|
|
|
'edit sku template' => {
|
|
title => 'help edit sku template title',
|
|
body => 'help edit sku template body',
|
|
fields => [],
|
|
related => []
|
|
},
|
|
|
|
};
|
|
|
|
1;
|
|
|