source: trunk/plugin/togac.py @ 23

Last change on this file since 23 was 23, checked in by bastiaans, 19 years ago

plugin/togac.py:

Initial checkin of plugin

File size: 219 bytes
Line 
1#!/usr/bin/env python
2
3from PBSQuery import PBSQuery
4
5class PBSDataGatherer:
6
7        def __init__( self ):
8
9                self.pq = PBSQuery()
10
11def main():
12
13        gather = PBSDataGatherer()
14
15        print 'blaat'
16
17if __name__ == '__main__':
18        main()
Note: See TracBrowser for help on using the repository browser.