repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
seedlot upload with accession synonyms. seedlot upload works to update existing seedlots
[sgn.git]
/
lib
/
SGN
/
Controller
/
Styleguide.pm
blob
391a8173b3fa201f04eeae7e4abce2c91ff5f9ee
1
use
strict
;
2
3
package
SGN
::
Controller
::
Styleguide
;
4
5
use
Moose
;
6
use
URI
::
FromHash
'uri'
;
7
use
Data
::
Dumper
;
8
9
10
BEGIN
{
extends
'Catalyst::Controller'
; }
11
12
sub
workflow
:
Path
(
'/styleguide'
) :
Args
(
0
) {
13
my
(
$self
,
$c
) =
@_
;
14
$c
->
stash
->{
template
} =
'/util/styleguide.mas'
;
15
}
16
17
1
;