mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-24 02:46:24 +00:00
start
This commit is contained in:
23
API/SOGoAPI.m
Normal file
23
API/SOGoAPI.m
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
Copyright (C) todo...
|
||||
*/
|
||||
|
||||
#import <SOGoAPI.h>
|
||||
|
||||
|
||||
@implementation SOGoAPI
|
||||
|
||||
- (NSDictionary *) sogoVersionAction {
|
||||
NSDictionary* result;
|
||||
|
||||
result = [[NSDictionary alloc] initWithObjectsAndKeys:
|
||||
@"major", SOGO_MAJOR_VERSION,
|
||||
@"minor", SOGO_MINOR_VERSION,
|
||||
@"patch", SOGO_PATCH_VERSION,
|
||||
nil];
|
||||
[result autorelease];
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
@end /* SOGoAPI */
|
||||
Reference in New Issue
Block a user