blob: a04229fc0a7234283440bd1243d96cd4121985e0 [file] [log] [blame]
// Copyright (c) 2015, <your name>. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
import 'package:pubcache/pubcache.dart';
void main(List<String> args) {
PubCache cache = new PubCache();
print('activated applications:');
cache.getGlobalApplications().forEach((app) {
print(' ${app}');
});
}